HTML中的Marquee scrollamount属性用于设置每个间隔的滚动量(以像素为单位)。选取框的默认速度为6。
用法:
<marquees scrollamount=number >
属性值:
- Number:定义速度值。
例:
<!DOCTYPE html>
<html>
<head>
<title>Marquee Tag</title>
<style>
.main {
text-align:center;
}
.marq {
padding-top:30px;
padding-bottom:30px;
}
</style>
</head>
<body>
<h1 style="color:green; text-align:center;">
GeeksforGeeks
</h1>
<div class="main">
<marquee class="marq"
bgcolor="Green"
direction="left"
loop="">
scrollamount:default(6)
</marquee>
<marquee class="marq"
Scrollamount=10
bgcolor="Green"
direction="left"
loop="">
scrollamount:10
</marquee>
</div>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML Marquee scrollamount属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- 苹果Safari
- Opera
相关用法
- HTML Marquee scrolldelay用法及代码示例
- HTML Marquee direction用法及代码示例
- HTML Marquee truespeed用法及代码示例
- HTML Marquee height用法及代码示例
- HTML Marquee bgcolor用法及代码示例
- HTML Marquee vspace用法及代码示例
- HTML Marquee loop用法及代码示例
- HTML Marquee width用法及代码示例
- HTML Marquee hspace用法及代码示例
- HTML Marquee behavior用法及代码示例
- HTML <marquee>用法及代码示例
- HTML value属性用法及代码示例
- HTML max属性用法及代码示例
注:本文由纯净天空筛选整理自Vijay Sirra大神的英文原创作品 HTML | Marquee scrollamount attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。