Reputation: 1023
I want to Create a Marquee that when text Exit from one Side and show on other side
like i have code something like that
<marquee behavior="scroll" scrollamount="1.5">Hello World</marquee>
Its shows Hello World move from left to right when first letter hide that it enters left side then i want that i doesn't hide it begin again from left side. Like H hide from left then H shows at right side.
Upvotes: 1
Views: 961
Reputation: 10198
Try this
<marquee behavior="alternate" >Heloo welcome</marquee>
demo http://jsfiddle.net/XAzv5/
Upvotes: 1