图片滚动代码

来源:互联网 发布:淘宝自然流量包括什么 编辑:程序博客网 时间:2024/06/10 05:53
<MARQUEE onmouseover=stop() onmouseout=start() scrollAmount=5 loop=infinite height=81 deplay="0">. <IMG height=100 src="http://pub.anyp.cn/images/manage/pic_main.gif" width=100> <IMG height=100 src="http://pub.anyp.cn/images/manage/top_logo.gif" width=100> .</MARQUEE>
代码含义补充说明:
1.scrollAmount。它表示速度,值越大速度越快。
   如果没有它,默认为6,建议设为1~3比较好。
2.direction。表示滚动的方向,默认为从右向左:←←←。可选的值有right、down、up。
   滚动方向分别为:right表示→→→,up表示↑,down表示↓。
3.width和height,表示滚动区域的大小,width是宽度,height是高度。
   特别是在做垂直滚动的时候,一定要设height的值。
4.behavior。用它来控制属性,默认为循环滚动。
  可选的值有alternate(交替滚动)、slide(幻灯片效果,指的是滚动一次,然后停止滚动)
5.加入onmouseover=stop() onmouseout=start()代码,
   鼠标指向循环文字图片时他们会停止滚动,鼠标离开时继续滚动。
 
 
图片的滚动

<script>document.write('<marquee scrollAmount=2 width=340 height=160 direction=up onmouseover=stop() onmouseout=start()><a href=http://www.webshu.com><img src=../../j/01.jpg border=0></a></marquee>')</script>:

1:scrollAmount=2 width=340 height=160 direction=up onmouseover=stop() onmouseout=start()这些表示什么?
答:请点击这篇专题:滚动字幕制作手册,其中height表示区域的高度。

问2:如何插入图片?
用<img src=相对路径/文件名>的语句。并且要注意图片名不要中文,要注意区分英文大小写。

问3:如何为图片做超链接?
答:用<a href=>和</a>把<img>包围,并且img必须设border=0,否则图片会出现蓝框。正确的例子如:<a href=http://www.webshu.com><img src=../../j/01.jpg border=0></a>
其中a href=表示超链接,这是最常用的。练习的方法也很简单,就是平时用FP或DW做网页的时候,要多查看源代码。

问4:如何做多张图片排列滚动?
答:通常图片和图片之间用<br>(回行)或<p style=margin-top:9>(精确调整图片间的距离)来链接。也可以把你的图片先用表格排版,然后把这个表格的所有语句也加入到marquee中,让这个表格来

 

css代码如下:

<MARQUEE onmouseover=this.stop() onmouseout=this.start() scrollAmount=2 scrollDelay=60 direction=up width=235 height=330>
<DIV align=center><A href="
http://myok.blogchina.com/1574968.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119041.jpg" width=235 border=0></A>
</DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119042.jpg" width=235 border=0></A>
<DIV></DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119043.jpg" width=235 border=0></A>
<DIV></DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119054.jpg" width=235 border=0></A>
<DIV></DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119055.jpg" width=235 border=0></A>
<DIV></DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119302.jpg" width=235 border=0></A>
<DIV></DIV><A href="
http://myok.blogchina.com/1575395.html" target=_blank><IMG src="http://forum.ikaka.com/uploadfiles/200512/26/369144200512261119301.jpg" width=235 border=0></A>
<DIV></DIV></MARQUEE>

原创粉丝点击