Click to See Complete Forum and Search --> : Scrolling text in a table
SimonBahr
04-13-2005, 08:17 AM
Not sure I'm going in the right direction with this but I would like to show some rolling or scrolling up text and images in a box on my site. I would also like the scrolling text and images to be hyperlinks.
I know this is possible but how? Can anyone help?
Cheers Si :D
TheBearMay
04-13-2005, 08:56 AM
<marquee direction="up" style="border:3px solid red">
<a href="http://yourURL>Click here</a>
</marquee>
SimonBahr
04-13-2005, 10:47 AM
Cheers.
I assume anything you put bewteen the <marque> html will scroll up including images extra.
What is the code for changing the speed of the scroll? Can you create this action using CSS? :D
the tree
04-13-2005, 11:28 AM
Marquee isn't and never was part of the HTML standard, recomended agaisn't by the WAI guidelines and expressly forbidden by section 508.
Your best bet is to do this with javascript.
TheBearMay
04-13-2005, 12:37 PM
Marquee isn't and never was part of the HTML standard, recomended agaisn't by the WAI guidelines and expressly forbidden by section 508.
Your best bet is to do this with javascript.
You forgot to add...but is supported by both IE and FF.
TheBearMay
04-13-2005, 12:41 PM
SimonBahr - <marquee scrolldelay="500">...
SimonBahr
04-14-2005, 03:07 AM
Does anyone know what the Javascript would be?? :D
Thanks
Si... :)
TheBearMay
04-14-2005, 06:40 AM
Here's one that seems to work in both IE and FF:
http://javascript.internet.com/messages/ajscroller.html
SimonBahr
04-15-2005, 08:10 AM
Cheers Old Fella.
Perhaps you can clarify a point...what is IE and FF and why are these such hot topics??
Si. :D
TheBearMay
04-15-2005, 08:31 AM
IE = Internet Explorer (about 90-98% of the browser market depending on who you believe)
FF = FireFox (the new mozilla browser that is attempting to overthrow IE)
SimonBahr
05-09-2005, 03:52 PM
Old fella,
I've used the code on my site www.**********.co.uk and it works a treat..
Lot of people hate it but I don't....so thanks for your help.
Si. :D
TheBearMay
05-10-2005, 06:38 AM
Glad to be of assistance.