Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to change the speed of HTML's <marquee> tag?

Tags:

html

marquee

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?

like image 473
aaaaa Avatar asked Nov 19 '10 17:11

aaaaa


People also ask

Can you change the speed of marquee in HTML?

Marquee speed can be changed using the "scrollmount" attribute. For example, if you are using scrollmount = "1" then it sets the marque to scroll very slowly, and as you increase the "scrollmount," the scrolling speed will also increase.

Which attribute of marquee determines the moving speed of the text?

The Scrollamount AttributeSCROLLAMOUNT , together with SCROLLDELAY , sets the speed of the scrolling.


1 Answers

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

scrollamount controls the speed of text: higher the value higher is the scrolling speed

like image 146
Ashish Anand Avatar answered Sep 20 '22 19:09

Ashish Anand