详情:
滚动方向
<marquee direction="left">从右向左滚动</marquee>
<marquee direction="right">从右向右滚动</marquee>
<marquee direction="up">从右向上滚动</marquee>
<marquee direction="down">从右向下滚动</marquee>
鼠标属性
<marquee onMouseOut="this.start()" >鼠标移出状态滚动</marquee>
<marquee onMouseOver="this.stop()" >鼠标经过时停止滚动</marquee>
滚动方式
<marquee behavior="scroll">一圈一圈绕着滚动</marquee>
<marquee behavior="slide">只走一圈就不滚动了</marquee>
<marquee behavior="alternate">左右来回滚动</marquee>
循环次数
<marquee loop="3">只滚动3次</marquee>
速度与延时
<marquee scrolldelay="20" scrollamount="2">滚动速度可以自己修改数值调试</marquee>
注释:scrollamount=速度 、 scrolldelay=延时
背景颜色
<marquee bgcolor="#FFFFFF">白色背景</marquee>
面积尺寸
<marquee width="50%" height="30">宽50%,高30像素</marquee>
空白(间距)
<marquee hspace="10" vspace="40">这2个属性类似padding样式</marquee>
注释:hspace=左右间距 、 vspace=上下间距
以上就是marquee常用属性,使用时把你需要的参数组合起来就可以了。
常用完整代码:
<marquee direction="left" width="50%" height="30" onMouseOut="this.start()" onMouseOver="this.stop()" behavior="scroll" scrolldelay="20" scrollamount="2">Marquee属性代码来自:永硕E盘服务平台 http://www.xxxpan.com </marquee>
版权声明:
原版版权归属 永硕E盘联盟 本站仅做分享学习!