| View previous topic :: View next topic |
| Author |
Message |
Tomi 500+ Club

Joined: 26 Jun 2006 Posts: 733
|
Posted: Sat Jul 01, 2006 12:40 am Post subject: Scroller |
|
|
can some one write me a simple script for a scroller, some thing that will scroll my affilaites down automaticaly and when the mouse hovers over the scroller it stops scrolling ?
ty |
|
| Back to top |
|
 |
|
|
Ash 1000+ Club

Joined: 03 Aug 2005 Posts: 1016 Location: England
|
Posted: Sat Jul 01, 2006 10:00 am Post subject: Re: Scroller |
|
|
You can do that in HTML
| Code: |
| <marquee direction="down">Content<br>content</marquee> |
Make sure that after every affiliate you put either a <br> or a <br /> |
|
| Back to top |
|
 |
grommit
Joined: 29 Jun 2006 Posts: 28 Location: Netherlands
|
Posted: Sat Jul 01, 2006 11:41 am Post subject: Re: Scroller |
|
|
Jep <marque> is an option:
I found this piece of code on some forum and fixed it a bit:
| Code: |
<marquee scrollamount="4" loop="true" onmouseover='this.stop()' onmouseout='this.start()' scrolldelay= "15">
<a href="ADDRESS OF SITE HERE"target="_blank"><img src="IMAGE URL HERE" border="0" alt="image discription"></a>
</marquee>
|
It wil work if:
you use the latest versions of IE, Netscape and Firefox (some older versions of NS and FF doesn't support marquee)
If you site isn't XHTML 1.1 strict (Just tested it and it just wont display)
So i would search google for an text/image scroller in java or flash to make sure your site is accessible for everybody |
|
| Back to top |
|
 |
|