Hello,
Was sorting out my random banner scroll, added this new Javascript, but it won't work with the scroll every 3 seconds.
And is there any way to make the banners scroll in a order?
Additional info: http://www.animecookies.nstars.org - PhPBB3
Thanks.
Was sorting out my random banner scroll, added this new Javascript, but it won't work with the scroll every 3 seconds.
- Code:
});
$(function() {
var a = ["http://i42.tinypic.com/2ujqqyv.png", "http://img685.imageshack.us/img685/8762/32835484.png", "http://img850.imageshack.us/img850/1261/72655719.jpg", "http://img839.imageshack.us/img839/1759/40100640.jpg", "http://img221.imageshack.us/img221/2205/32895956.png", "http://img85.imageshack.us/img85/9394/12988506.png", "http://i42.tinypic.com/2ujqqyv.png"],
b=function(){$("#pun-logo img,#i_logo,#logo img").attr("src",a[Math.floor(Math.random()*a.length)])};b();setInterval(b,3*1000);
});
And is there any way to make the banners scroll in a order?
Additional info: http://www.animecookies.nstars.org - PhPBB3
Thanks.
Last edited by VelvetMoon on January 21st 2012, 9:19 pm; edited 2 times in total