Home  >  Article  >  Web Front-end  >  The marquee element implements scrolling fonts, picture sliding and other effects_HTML/Xhtml_Web page production

The marquee element implements scrolling fonts, picture sliding and other effects_HTML/Xhtml_Web page production

WBOY
WBOYOriginal
2016-05-16 16:38:471611browse

marquee元素可以实现简单的字体(图片等)的滑动等效果:

复制代码
代码如下:



www.baidu.com111
www.baidu.com222
www.baidu333.com
www.baidu444.com



www.baidu.com555






direction 表示滚动的方向,值可以是left,right,up,down,默认为left
behavior 表示滚动的方式,值可以是scroll(连续滚动)slide(滑动一次)alternate(来回滚动)
loop 表示循环的次数,值是正整数,默认为无限循环
scrollamount 表示运动速度,值是正整数,默认为6
scrolldelay 表示停顿时间,值是正整数,默认为0,单位似乎是毫秒
align 表示元素的垂直对齐方式,值可以是top,middle,bottom,默认为middle
bgcolor 表示运动区域的背景色,值是16进制的RGB颜色,默认为白色
height、width 表示运动区域的高度和宽度,值是正整数(单位是像素)或百分数,默认width=100% height为标签内元素的高度
hspace、vspace 表示元素到区域边界的水平距离和垂直距离,值是正整数,单位是像素。
onmouseover=this.stop() onmouseout=this.start() 表示当鼠标以上区域的时候滚动停止,当鼠标移开的时候又继续滚动。

以下是设置点击按钮时m3、m4的滚动或停止:

复制代码
代码如下:





Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn