Marquee 鼠标悬停的设置

2009-01-24 浏览:1560
Marquee 鼠标悬停的设置
评论:(0)复制地址

<marquee behavior="scroll" direction="left" loop="infinite" scrollamount="3">
<img src="01.jpg" width="100" height="75">
<img src="02.jpg" width="100" height="75">
......
</marquee>

使用说明:

  behavior="scroll" 滚动的方式,scroll 为一圈一圈绕着走。
  scrollAmount=3 滚动的速度,数值越大,速度越快,反之则慢。
        loop="infinite" 循环设置为无限循环。
  direction=left 滚动的方向 left 是由右向左 up 是向上。
  onmouseover='this.stop()' 有止停功能,this.stop() 鼠标放上就停止。
  onmouseout='this.start()' 有止停功能,this.start() 鼠标离开就滚动。

评论:(0)复制地址

相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。