HTML中marquee标签的属性之多少?
<marquee></marquee>理论知识的讲解
bgcolor属性文字滚动范围的背景颜色,参数值是16进制(形式:#AABBCC或#AA5566等)或预定义的颜色名字(如red、yellow、blue等)。
direction属性文字滚动的方向,属性的参数值有down、left、right、up共四个单一可选值,分别代表滚动方向向下、向左、向右、向上。
loop属性决定滚动文字的滚动次数,缺省是无限循环。参数值可以是任意的正整数,如果设置参数值为-1或infinite时将无限循环。
scrollamount和scrolldelay属性这两个属性决定文字滚动的速度(scrollamount)延时(scrolldelay),参数值都是正整数。
behavior属性的参数值为alternate、scroll、slide中的一个,分别表示文字来回滚动、单方向循环滚动、只滚动一次
width和height属性width和height属性的作用决定滚动文字在页面中的矩形范围大小。width属性用以规定矩形的宽度,height属性规定矩形的高度。这两个属性的参数值可以是数字或者百分数,数字表示矩形所占的(宽或高)像素点数,百分数表示矩形所占浏览器窗口的(宽或高)百分比。
align属性这个属性决定滚动文字位于距形内边框的上下左右位置。
direction
<marquee direction="up" bgcolor="greeen">我向上滚动</marquee> <hr color="red"> <marquee direction="down">我向下滚动</marquee> <hr color="green"> <marquee direction="left">我向左滚动</marquee> <hr> <marquee direction="right">我向右滚动</marquee>
scrollamount和scrolldelay
<marquee scrollamount="10">我速度很慢</marquee> <hr color="yellow"> <marquee scrollamount="100">我速度很快</marquee> <hr> <marquee scrolldelay="30">我小步前进。</marquee> <hr> <marquee scrolldelay="1000" scrollamount="100">我大步前进。</marquee> <hr>
loop
<!-- loop滚动的次数 --> <marquee loop="1">我滚动一次</marquee> <hr> <marquee loop="2">我滚动两次</marquee> <hr> <marquee loop="infinite">我无限循环滚动</marquee> <hr>
behavior
<!-- behavior属性的参数值为alternate、scroll、slide中的一个,分别表示文字来回滚动、单方向循环滚动、只滚动一次 --> <marquee behavior="alternate">我来回滚动</marquee> <hr> <marquee behavior="scroll">我单方向循环滚动</marquee> <hr> <marquee behavior="scroll" direction="up" height="30">我单方向向上循环滚动</marquee> <hr> <marquee behavior="slide">我只滚动一次</marquee> <hr> <marquee behavior="slide" direction="up">我向上只滚动一次</marquee> <hr> <marquee behavior=="slide" direction="left" bgcolor="red">我的背景色是红色的</marquee> <hr>
width和height属性
<!-- width和height属性 width和height属性的作用决定滚动文字在页面中的矩形范围大小。 width属性用以规定矩形的宽度,height属性规定矩形的高度。 这两个属性的参数值可以是数字或者百分数,数字表示矩形所占的(宽或高)像素点数,百分数表示矩形所占浏览器窗口的(宽或高)百分比。 --> <marquee width="400" height="200" bgcolor="green">我宽300像素,高30像素。</marquee> <hr> <marquee width="300" height="30" vspace="10" hspace="10" bgcolor="yellow">我矩形边缘水平和垂直距周围各10像素。</marquee> <hr> <marquee width="300" height="30" vspace="50" hspace="50" bgcolor="pink">我矩形边缘水平和垂直距周围各50像素。</marquee> <hr>
标题
align属性这个属性决定滚动文字位于距形内边框的上下左右位置
<hr> <!-- align属性这个属性决定滚动文字位于距形内边框的上下左右位置。 --> <marquee align="absbottom">绝对底部对齐</marquee> <hr> <marquee align="absmiddle">绝对中央对齐</marquee> <hr> <marquee align="baseline">底线对齐</marquee> <hr> <marquee align="bottom">底部对齐(默认)</marquee> <hr> <marquee align="left">左对齐</marquee> <hr> <marquee align="middle"> 中间对齐</marquee> <hr> <marquee align="right">右对齐</marquee> <hr> <marquee align="texttop">顶线对齐</marquee> <hr> <marquee align="top">顶部对齐</marquee>