|
Javascript random banner rotator
|
| SoD hobo |
Posted on 04/30/2011 17:03:58
|
Senior Member

Posts: 342
Joined: 04.03.11
|
Well slimjim i asked you if there was a script i could use for my site to see if i could rotate the banners randomly like you can do on this site, and after a week of some serious (by serious i mean right after skool, i multi-tasked by remodeling meh site AND cramming knowledge of javascript into my brain) i think i managed to make a code that works, tell me if this is correct:
Code<script type="text/javascript">
<!--
/* random banner
- open source */
var images = []; var n = 0;
images[n++] = 'Image URL 1';
images[n++] = 'Image URL 2';
images[n++] = 'Image URL 3';
var r = Math.floor(Math.random() * images.length);
document.getElementsByTagName('img').item(0).src = images[r];
//-->
</script>
its my first code, so please correct any errors i made slimjim :)


YES THOSE ARE BOTH ME! |
| |
|
|
| RazNinjaMike |
Posted on 04/30/2011 17:17:07
|

Moderator

Posts: 4586
Joined: 20.11.10
|
Hmm i just checked to see if this would work on w3school. It didn't...Hmm not sure if it because i dont have the original image files. or because i did it wrong? its a good place to learn stuff.
http://www.w3schools.com |
| |
|
|
| SoD hobo |
Posted on 04/30/2011 17:25:56
|
Senior Member

Posts: 342
Joined: 04.03.11
|
you should put the image link, not the image code in the parts that say 'Image Url'
well that and the fact that it randomly chooses a banner at random the way it does on htis site, so i dont think it would work on that site, hto i went on that site to make this code.....
i havent even tested it on my site
Edited by SoD hobo on 04/30/2011 17:33:55


YES THOSE ARE BOTH ME! |
| |
|
|
| FC_SlimJim |
Posted on 05/01/2011 07:19:58
|
Super Admin

Posts: 4725
Joined: 14.11.10
|
after im off work ill help you out, but i see a variety of errors  |
| |
|
|
| SoD hobo |
Posted on 05/01/2011 15:23:17
|
Senior Member

Posts: 342
Joined: 04.03.11
|
of course you do -.-
and i thought you like died in your sleep or something cuz u werent on for like 3 days but it felt like a week...


YES THOSE ARE BOTH ME! |
| |
|