Firstly I have a html marque:
<marquee behavior="scroll" direction="left" scrollamount="1">
But it wasn't smooth, and was too slow.
The higher scrollamount - the lower the smoothness.
Then i tried with css
marquee{
width: 200px; height: 50px; white-space: nowrap;
overflow: hidden;
overflow-x:-webkit-marquee;
-webkit-marquee-direction: forwards;
-webkit-marquee-style: scroll;
-webkit-marquee-speed: normal; //I changed this to `slow` - without effect
-webkit-marquee-increment: small;
.-webkit-marquee-repetition: 5;
overflow-x: marquee-line;
marquee-direction: forward;
marquee-style: scroll;
marquee-speed: normal; //I changed this to `slow` - without effect
}
I suppose, if I could change the speed to slow
the above marque will be smooth.
So, I want a simple
, smooth
and speed-adjustable
marque.