十几张原型图片,想用AI,一两天直接生成网站出来。
事实证明,没有切好图,折腾了半天都没生成个10%出来,还不如手敲的快!!!
AI目前还不是万能的。虽然,它是个好工具!
资本通过AI卷死牛马们。。。
什么前端已死?后端已死?软件已死?也是最后AI最先死!
算力,电力成本或高于人力成本呀。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | window.onload=function(){ document.querySelectorAll('.box_3').forEach(box => { box.onclick = function() { // 移除所有 active document.querySelectorAll('.box_3').forEach(item => { item.classList.remove('active'); }); // 为当前点击的添加 active this.classList.add('active'); if(this.innerText=="方案审查"){ document.querySelector('.box_4').style.display="none"; document.querySelector('.iframeContainer').style.display="block"; //const iframe = document.getElementById('hyIframe'); //iframe.src="https://www.runoob.com/tags/ev-onclick.html"; } if(this.innerText=="总览"){ document.querySelector('.box_4').style.display="flex"; document.querySelector('.iframeContainer').style.display="none"; } }; }); } |