A html rotating banner script?

Raymond

Seasoned Veteran
Joined
Nov 6, 2008
Messages
3,092
Reaction score
10
FP$
800
Does anyone know of where I can get a rotating banner script that is either html / javascript that I could place onto my vBulletin forum?
 
Rotating? Like a marquee? 😵
<marquee></marquee>

If you mean a random banner, then you're going to need Javascript. I'm not sure where you would be able to find the code though, but check the vB Mod resource forum.
 
This one is so simple.

Code:
<script language="JavaScript">


border=0 //0=yes 0=no

i = new Array();
i[0] = "IMAGE";
i[1] = "IMAGE";
i[2] = "IMAGE";

l = new Array();
l[0] = "LINK";
l[1] = "LINK";
l[2] = "LINK";


var n = Math.round(Math.random()*(i.length-1));

document.write("<center><table border="+border+" width=88 height=31><tr><td><a href="+l[n]+"><center><img src="+i[n]+" border=0></center></a></td></tr></table></center>");

</script>
 
@fowler I did really couldn't find a good working one that works with vBulletin.
 
All of them should work with all softwares, but the code has to be placed in the right place 😉
 
Thanks everyone, Going to go with Fergal's idea, Because it is a modification.
 
Back
Top Bottom