嘉兴市妇保院网上挂号:网页制作

来源:百度文库 编辑:中科新闻网 时间:2024/04/29 03:48:08
请问如何制作“使一组图片一次在一个横条中,从左到右自动移动”?
效果范例为http://www.pcgames.com.cn/cartoon/dvdzone/
在新番速递那,有个“TV动画”,就是我想要得效果
请以Dreamweaver为例,详解做法,谢谢

用<marquee></marquee>就能实现.
如:
<marquee direction="left" behavior="scroll" width="400" height="100" scrolldelay=80 scrollamount=1 onMouseOver="this.stop()" onMouseOut="this.start()">
<a href="#" target="_blank"><img src="image.gif" width="35" height="40"></a>
</marquee>

ps:
他那个是用了个大<table></table>包住了右对齐的<marquee></marquee>标签.
结构是
<table>
<div align=right>
<marquee>
<a href>
<img> //说明:中间的空隙可以用<img>的hspace属性也可以用nbsp;
</img>
</a>
</marquee>
</div>
</table>