Marquee标签详解

1
<marquee class="box"bgcolor='orange'direction="up"loop='-1'scrolldelay="100"behavior="scroll"onmouseover="this.stop()"onmouseout='this.start()'>Marquee是啥?</marquee>

面就是一段很简单的marquee代码,基本的功能都具备了,包括鼠标移动停止,鼠标移开继续

名称描述/备注
widthpixels规定元素宽度
directionup
right
down
left
规定滚动方向
behavioralternate
scroll
slide
规定滚动方式
bgcolor#xxxxx
rgb(x,x,x)
colorname 规定元素的背景颜色
loopnumber规定滚动次数,如1、2,-1表示无限循环滚动
scrollamountpixels每次滚动的距离,单位:像素
scrolldelaymillisecond两次滚动之间的间隔时间
scrollamount scrolldelay都可以控制滚动速度,只是方式不同

一个简单演示