鼠标移动到文字滚动离开则返回原状
发布日期:[2009/11/25] 编辑:奇亿广州网站建设
一般文字滚动是鼠标移动到文字后停止,离开后又滚动的,但这代码则相反,文字默认为静止,鼠标移动到文字上时则滚动,离开后又返回原来静止状态。
<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>求鼠标移动到文字上文字左右滚动特效!</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>求鼠标移动到文字上文字左右滚动特效!</marquee>
<SCRIPT>
document.all.maqtxt2.scrollLeft=110;document.all.maqtxt2.stop()</SCRIPT>
复制后请将代码中on mouseover和on mouseout中间的空格去掉。