Arshpreet Wadehra
Arshpreet Wadehra

Reputation: 1023

Create a Marquee in html

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

Answers (2)

Satinder singh
Satinder singh

Reputation: 10198

Try this

 <marquee behavior="alternate" >Heloo welcome</marquee>

demo http://jsfiddle.net/XAzv5/

Upvotes: 1

Jigar Pandya
Jigar Pandya

Reputation: 5987

put

marquee behavior="alternate">

to fix it...

Upvotes: 2

Related Questions