是否可以更改HTML <marquee>标签的速度?</marquee>

时间:2010-11-19 17:02:22

标签: html marquee

当一个选框离开屏幕时,经过短暂的间隙后,它会从另一侧进入。 有没有办法减少这个时间?

14 个答案:

答案 0 :(得分:38)

<marquee behavior=scroll direction="left" scrollamount="5">Your message here</marquee>

scrollamount控制文本的速度:值越高,滚动速度越高

答案 1 :(得分:24)

我们可以使用scrollamount属性

来控制滚动速度

示例:

<marquee scrollamount="30">scrolling fast</marquee>
<marquee scrollamount="2">scrolling slow</marquee>

注意:如果指定最小数量,则滚动速度将减小反之亦然

答案 2 :(得分:7)

没有具体的控制权限的属性。 Marquee无论如何都不是一个高度可靠的标签。您可能需要考虑使用jQuery和.animate()函数。如果您有兴趣追求该途径并需要代码,请告诉我。

答案 3 :(得分:6)

此属性花费时间(以毫秒为单位)。

延迟:100毫秒

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

延迟:400毫秒

<marquee scrolldelay="400">Scrolling text</marquee>

答案 4 :(得分:4)

您可以使用 scrollamount 属性更改选框标记的速度。

它接受整数值6作为默认速度,因此任何低于6的值都会减慢选取框效果。

示例:

<marquee scrollamount=4>Scrolling text</marquee>

了解详情:http://code2care.org/pages/marquee-tag-scrollamount/

http://www.htmlcodetutorial.com/_MARQUEE_SCROLLAMOUNT.html

P.S:避免使用选框!

答案 5 :(得分:4)

为了提高字幕的速度,您只需要在下面的代码中添加如下内容:

<marquee scrollamount="Integer number">scrolling fast</marquee>

答案 6 :(得分:3)

scrolldelay="number"

答案 7 :(得分:1)

您可以通过添加scrolldelay

来更改速度

<marquee style="font-family: lato; color: #FFFFFF" bgcolor="#00224f" scrolldelay="400">Now the Speed is Delay to 400 Milliseconds</marquee>

答案 8 :(得分:1)

要提高文本的滚动速度,请使用属性

scrollamount
OR
scrolldelay

在“字幕”标签中。放置代表您需要文本移动多快的整数值

答案 9 :(得分:1)

我只是这样做:

<marquee scrollamount="A number">Text here</marquee>

答案 10 :(得分:1)

使用带有整数的滚动量: scrollamount 值越高,文本越快。

<marquee scrollamount="1">SLOW TEXT</marquee>
<marquee>DEFAULT SPEED TEXT</marquee>
<marquee scrollamount="10">FAST TEXT</marquee>
<marquee scrollamount="20">Faster text</marquee>

默认滚动速度为 6。

<marquee>Text</marquee>
<marquee scrollamount="6">Text</marquee>
<marquee scrollamount="30">Quick text</marquee>
<marquee scrollamount="90">Very Quick text</marquee>

答案 11 :(得分:1)

<marquee scrollamount="1">SLOW TEXT</marquee>
<marquee>DEFAULT SPEED TEXT</marquee>
<marquee scrollamount="10">FAST TEXT</marquee>
<marquee scrollamount="20">Faster text</marquee>

答案 12 :(得分:0)

         <body>
         <marquee direction="left" behavior=scroll scrollamount="2">This is basic example of marquee</marquee>
         <marquee direction="up">The direction of text will be from bottom to top.</marquee>
         </body>

使用scrollamount控制速度..

答案 13 :(得分:-2)

在HTML5上,scrollamount和scrolldelay属性不起作用。它们是专有属性。