HTML之marquee标签(⽂字滚动)
marquee 标签
常⽤属性:
1.⿏标移⼊移出
onMouseOut=“this.start()” :⽤来设置⿏标移出该区域时继续滚动
onMouseOver=“this.stop()”:⽤来设置⿏标移⼊该区域时停⽌滚动
2.behavior 设定滚动的⽅式:
alternate: 表⽰在两端之间来回滚动。
scroll: 表⽰由⼀端滚动到另⼀端,会重复。
slide: 表⽰由⼀端滚动到另⼀端,不会重复。
3.align 设定内容的对齐⽅式
absbottom:绝对底部对齐(与g、p等字母的最下端对齐)
absmiddle:绝对中央对齐
baseline:底线对齐
bottom:底部对齐(默认)
left:左对齐
middle:中间对齐
right:右对齐
texttop:顶线对齐
top:顶部对齐
4.direction 设定内容的滚动⽅向
direction=“down”:向下
direction=“left”:向左
direction=“right”:向右
direction=“up”:向上
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
html如何设置图片滚动<title></title>
</head>
<body>
<marquee align="left"behavior="scroll"bgcolor="green"direction="up"height="300"width="200"hspac
e="50"vspace="20"loop="-1"scrollamount="10"s crolldelay="100"onMouseOut="this.start()"onMouseOver="this.stop()">
完整案例
</marquee>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论