中文(繁体)
我不知道你看過沒有,這個特效是把網頁中圖片的預設alt的提示去掉
<img src="/u/info_img/2009-06/18/9597_logo.gif" alt="建站學院1號站"> <img src="/u/info_img/2009-06/18/9597_logo.gif" alt="建站學院2號站"> <img src="/u/info_img/2009-06/18/9597_logo.gif" alt="建站學院3號站"> <div style="visibility:hidden;border:0px solid #000000;background-color:#333333;font-size:12px;color:#6699cc;position:absolute;" id =altlayer></div> <script> document.body.onmousemove=quickalt; function quickalt() { if (event.srcElement.hint)event.srcElement.alt=event.srcElement.hint; if(event.srcElement.alt && event.srcElement.alt!='') { event.srcElement.hint=event.srcElement.alt; altlayer.style.visibility='visible'; altlayer.style.left=event.x-1; altlayer.style. top=event.y+16; altlayer.innerHTML=event.srcElement.hint event.srcElement.alt=""; } else altlayer.style.visibility='hidden';} </script>