鼠標(biāo)移動(dòng)到文字滾動(dòng)離開(kāi)則返回原狀
一般文字滾動(dòng)是鼠標(biāo)移動(dòng)到文字后停止,離開(kāi)后又滾動(dòng)的,但這代碼則相反,文字默認(rèn)為靜止,鼠標(biāo)移動(dòng)到文字上時(shí)則滾動(dòng),離開(kāi)后又返回原來(lái)靜止?fàn)顟B(tài)。
<marquee id="maqtxt1" on mouseover="this.start()" on mouseout="this.scrollLeft=110;this.stop()" direction=left behavior=alternate height=25 width=110 scrollamount=2 scrolldelay=10>求鼠標(biāo)移動(dòng)到文字上文字左右滾動(dòng)特效!</marquee>
<SCRIPT>
document.all.maqtxt1.scrollLeft=110;document.all.maqtxt1.stop()</SCRIPT>
<br><br>
<marquee id="maqtxt2" on mouseover="this.start()" on mouseout="this.scrollLeft=110;this.stop()" direction=left behavior=alternate height=25 width=110 scrollamount=2 scrolldelay=10>求鼠標(biāo)移動(dòng)到文字上文字左右滾動(dòng)特效!</marquee>
<SCRIPT>
document.all.maqtxt2.scrollLeft=110;document.all.maqtxt2.stop()</SCRIPT>
復(fù)制后請(qǐng)將代碼中on mouseover和on mouseout中間的空格去掉。
復(fù)制本文《鼠標(biāo)移動(dòng)到文字滾動(dòng)離開(kāi)則返回原狀》地址給好友: