圖片上下滾動特效?
<MARQUEE onmouseover=stop() onmouseout=start() scrollAmount=3 loop=infinite deplay="0"><IMG src="第一張圖片地址" ><IMG src="第二張圖片地址"></MARQUEE>
注釋:
1) scrollAmount。它表示速度,值越大速度越快。
2) 加入onmouseover=stop() onmouseout=start()代碼,鼠標指向循環(huán)文字圖片時他們會停止?jié)L動,鼠標離開時繼續(xù)滾動。
給滾動圖片加超鏈接
用<a href=>和</a >把<img>包圍,并且img必須設border=0,否則圖片會出現(xiàn)邊框。例子如下:
<MARQUEE scrollAmount=3 loop=infinite deplay="0"><a href=" ">< img src="圖片網(wǎng)址" border=0></a ></MARQUEE>
圖片從右到左滾動
<MARQUEE width=寬 height=高 onmouseover=stop() onmouseout=start() scrollAmount=速度 loop=infinite deplay="0">< img src="圖片地址 ">< img src="圖片地址 ">···</MARQUEE>
圖片從下到上滾動
<marquee behavior="scroll" direction=up width="寬" height="高" scrollamount="5" onmouseout="this.start()">< img src="圖片網(wǎng)址 ">< img src="圖片網(wǎng)址 ">···</marquee>
帶有超鏈接的圖片實現(xiàn)滾動效果
<marquee behavior="scroll" direction=up width="120" height="60" scrollamount="1" scrolldelay="60" onmouseover="this.stop()" onmouseout="this.start()"><a target="cont" href="連接地址">< img src="http://圖片地址" idth="88" height="33" border="0"></a ><a target="cont" href="連接地址">< img src="圖片地址" width="88" height="33" border="0"></a ></marquee>