你的位置:
主页
>>
文本特效
控制文本左右移动
←
文字从一边移动到另一边文字从一边移动到另一边
→
加入如下代码到body区域
<script language=JavaScript> var a,b </script> <span style="cursor:hand" onmouseover="a=setInterval('e.scrollLeft--',2)" onmouseout="clearInterval(a)">←</span> <span id=e style="width:100;height:18;overflow:hidden;white-space:nowrap">文字从一边移动到另一边文字从一边移动到另一</span> <span style="cursor:hand" onmouseover="b=setInterval('e.scrollLeft++',2)" onmouseout="clearInterval(b)">→</span>