是否可以更改 HTML 的
当一个选取框离开屏幕时,经过一小段时间的间隙,它会从另一侧进入。 有什么办法可以减少这个时间吗?
When one marquee leaves the screen then after a short time gap it enters from another side.
Is there any way to reduce this time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(14)
滚动量控制文本的速度:值越大滚动速度越高
scrollamount controls the speed of text: higher the value higher is the scrolling speed
我们可以通过使用
scrollmount
属性来控制滚动速度,示例:
注意:如果指定最小数量,则滚动速度会降低,反之亦然
we can control the scrolling speed by using the
scrollamount
attribute,Example:
note:if you specify the minimum number, the scrolling speed will be reduce vice versa
此属性花费的时间以毫秒为单位。
延迟:100 毫秒
延迟:400 毫秒
This attribute takes the time in milliseconds.
Delay : 100 Milliseconds
Delay : 400 Milliseconds
没有专门的属性来控制它。无论如何,Marquee 并不是一个高度可靠的标签。您可能需要考虑使用 jQuery 和 .animate() 函数。如果您有兴趣追求这一途径并需要代码,请告诉我。
There isn't specifically an attribute to control that. Marquee isn't a highly reliable tag anyways. You may want to consider using jQuery and the .animate() function. If you are interested in pursuing that avenue and need code for it, just let me know.
您可以使用 scrollmount 属性更改选取框标记的速度。
它接受整数值 6 作为默认速度,因此任何低于 6 的值都会减慢选取框效果。
示例:
阅读更多内容:http://code2care.org/pages/marquee-tag-scrollamount/< /a>
http://www.htmlcodetutorial.com/_MARQUEE_SCROLLAMOUNT.html
PS:避免使用字幕!
You can change the speed of marquee tag using scrollamount attribute.
It accepts integer values 6 being the default speed, so any value lower then 6 will slow down the marquee effect.
Example :
Read more : http://code2care.org/pages/marquee-tag-scrollamount/
http://www.htmlcodetutorial.com/_MARQUEE_SCROLLAMOUNT.html
P.S : Avoid using marquee!
scrolldelay=“数字”
scrolldelay="number"
您可以通过添加滚动延迟来更改速度
You can Change the speed by adding scrolldelay
为了提高字幕文本的速度,您只需在下面的代码中添加如下内容:
In Order to increase speed of your Marquee text you just need to add like this in your code below:
要提高文本的滚动速度,请使用
“marquee”标签中的属性。放置任何代表您需要文本移动速度的整数值
To increase scroll speed of text use attribute
in the 'marquee' tag. place any integer value which represent how fast you need your text to move
我只是这样做:
I just do:
使用带有整数的滚动量:
滚动量值越高,文本显示速度越快。
默认滚动速度为 6。
Use scrollamount with an integer:
The higher the scrollamount value, the faster the text.
Default scrollamount speed is 6.
使用scrollamount来控制速度..
use scrollamount to control speed..
在 HTML5 上,scrollamount 和scrolldelay 属性不起作用。它们是贬义的属性。
On HTML5 the scrollamount and the scrolldelay attributes do not work. They are depricated attributes.