Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text scrolls up and stays

Status
Not open for further replies.

DOGWATCH

Programmer
Mar 11, 2004
120
0
0
US
Anyone have some nice resource snipts on the web. The text effect I would like to do is have a few lines of text scroll up from the bottom of a defined area and stop. Sort of like a horizontal news ticker but it really just needs to scroll up and then stop permanently.
 
use a <MARQUEE> tag wouldn't the text continually loop up and not stop ??? I would like the text to slowly scroll up and stop.




 
In IE there are properties to control speed, direction, height, all sorts of things.
Code:
<marquee loop="1" direction="up" behavior="slide">test</marquee>

But if you want a cross-browser solution, you should use JavaScript instead.

Adam
while(ignorance){perpetuate(violence,fear,hatred);life=life-1};
 
what browsers does marquee work on besides IE ??

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top