Scrolling down->up news ticker?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
WithHisStripes
Forum Contributor
Posts: 131
Joined: Tue Sep 13, 2005 7:48 pm

Scrolling down->up news ticker?

Post by WithHisStripes »

Heya,
So I have an rss feed that I have plugged into a JS news ticker, but it doesn't scroll, does anyone know how to get it to scroll down to up?

-Thanks! Spence
User avatar
chrys
Forum Contributor
Posts: 118
Joined: Tue Oct 04, 2005 9:41 am
Location: West Roxbury, MA (Boston)

Post by chrys »

Does it need to be advanced? If nto.. use <marquee> HTML tag scrolldirection="up"
WithHisStripes
Forum Contributor
Posts: 131
Joined: Tue Sep 13, 2005 7:48 pm

Post by WithHisStripes »

Nevermind, I figured it out:

Code: Select all

<div align="center"><marquee width=100% behaviour=scroll scrollamount="1" height="100" width="225" direction="up"><script language="JavaScript" src="http://itde.vccs.edu/rss2js/feed2js.php?src=http%3A%2F%2Frss.time.com%2Fweb%2Ftime%2Frss%2Ftop%2Findex.xml&chan=n&num=5&desc=1&date=n&targ=y" type="text/javascript"></script>

<noscript>
<a href="http://itde.vccs.edu/rss2js/feed2js.php?src=http%3A%2F%2Frss.time.com%2Fweb%2Ftime%2Frss%2Ftop%2Findex.xml&chan=n&num=5&desc=1&date=n&targ=y&html=y">View RSS feed</a>
</noscript></marquee></div>
Post Reply