用DW如何制作多图滚动且每张图有超链接

来源:百度知道 编辑:UC知道 时间:2024/06/15 02:27:38

<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">
<img src="03.jpg" width="100" height="75">
<img src="04.jpg" width="100" height="75">
<img src="05.jpg" width="100" height="75">
<img src="16.jpg" width="100" height="75">
</marquee>
使用说明:
behavior="scroll" 滚动的方式,scroll 为一圈一圈绕着走。
scrollAmount=8 滚动的速度,数值越大,速度越快,反之则慢。
direction=left 滚动的方向 left 是由右向左 up 是向上。
onmouseover='this.stop()' 有止停功能,this.stop() 鼠标放上就停止。
onmouseout='this.start()' 有止停功能,this.start() 鼠标离开就滚动。