码迷,mamicode.com
首页 > 其他好文 > 详细

【转】marquee标签简介

时间:2016-04-27 09:35:30      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

本文转自:http://www.360doc.com/content/12/0818/16/8351655_230872993.shtml

marquee语法
    <marquee></marquee>

实例一
<marquee>Hello, World</marquee>

marquee常用到的两个事件:
onMouseOut="this.start()" 当鼠标移出该区域时
onMouseOver="this.stop()" 当鼠标移入该区域时

实例二
<marquee onMouseOut="this.start()" onMouseOver="this.stop()">marquee常用到的两个事件</marquee>


下面开始说一下marquee所支持的属性


beha
vior设定滚动的方式:
    alternate:来回滚动。

    scroll:   重复滚动。
    slide:    不重复滚动。

代码如下:

<marquee behavior="alternate">来回滚动。 </marquee>

<marquee behavior="scroll">重复滚动。</marquee>

<marquee behavior="slide">不重复滚动。</marquee>

 

bgcolor设定活动字幕的背景颜色。

代码如下:

<marquee bgcolor="#006699">设定活动字幕的背景颜色</marquee>

<marquee bgcolor="RGB(10%,50%,100%,)">设定活动字幕的背景颜色 </marquee>

<marquee bgcolor="red">设定活动字幕的背景颜色</marquee>

 

direction设定活动字幕的滚动方向

代码如下:

<marquee direction="down">设定活动字幕的滚动方向向下</marquee>

<marquee direction="left">设定活动字幕的滚动方向向左</marquee>

<marquee direction="right">设定活动字幕的滚动方向向右</marquee>

<marquee direction="up">设定活动字幕的滚动方向向上</marquee>

 

height设定活动字幕的高度

代码如下:

<marquee height="500" direction="down" bgcolor="#CCCCCC">设定活动字幕的高度</marquee>

 

width设定活动字幕的宽度

代码如下:

<marquee width="500" bgcolor="#CCCCCC">设定活动字幕的宽度</marquee>

 

loop设定滚动的次数,当loop=-1表示一直滚动下去,默认为-1

代码如下:

<marquee loop="-1" bgcolor="#CCCCCC">我会不停地走。</marquee>

<marquee loop="2" bgcolor="#CCCCCC">我只走两次哦</marquee>

 

scrollamount设定活动字幕的滚动速度,单位pixels

代码如下:

<marquee scrollamount="10" >scrollamount="10" </marquee>

<marquee scrollamount="20" >scrollamount="20" </marquee>

<marquee scrollamount="30" >scrollamount="30" </marquee>

 

scrolldelay设定活动字幕滚动两次之间的延迟时间,单位millisecond(毫秒)

值大了会有一步一停顿的效果

代码如下:

<marquee scrolldelay="10" >scrolldelay="10" </marquee>

<marquee scrolldelay="100" > scrolldelay="100"</marquee>

<marquee scrolldelay="1000">scrolldelay="1000" </marquee>

【转】marquee标签简介

标签:

原文地址:http://www.cnblogs.com/huansky/p/5437482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!