Hey, I know Ive seen this before, how do you make something like the vendors scrolling across the page here http://www.sportsmith.net/ Underneath the changing flash. I know there is some way to do that with JS isnt there?
This can be done with the HTML <marquee> tag. Put the content you want to scroll inside <marquee>CODE GOES HERE</marquee>, there's no difference whether it is just text, images, both, etc. Good luck
You can use the start() and stop() functions of the marquee. Here's the simplest way to do what you want: <marquee id='mymarquee' onmouseover='this.stop()' onmouseout='this.start()'> some text/links/pictures/whatever... </marquee> Code (markup): Another thing you can do is call this functions from the inside elements. Something like that: <marquee id='mymarquee'> <span onmouseover='this.parentNode.stop()' onmouseout='this.parentNode.start()'>some text/links/pictures/whatever...</span> <span onmouseover='this.parentNode.stop()' onmouseout='this.parentNode.start()'>another something...</span> </marquee> Code (markup): This way the marquee stops scrolling only when one of the spans inside is being mouseovered, and not when the marquee itself has been mouseovered. Good luck