Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-13-2009, 12:16 PM
magicgi magicgi is offline
Junior Member
 
Join Date: Jul 2009
Posts: 3
Default get JavaScript code into hosting for banner rotation

I'm looking for JavaScript code for banner rotation. I want to be able to adjust the time interval for changing of the banners in website from my hosting?
Reply With Quote
  #2  
Old 10-13-2009, 12:33 PM
Liona's Avatar
Liona Liona is offline
Member
 
Join Date: Jan 2009
Location: Buenos Aires
Posts: 78
Default Re: get JavaScript code into hosting for banner rotation

HTML Code:
<script language="javascript">
var banner1 = new Image();
var banner2 = new Image();
banner1.src = "./path/banner1.jpg";
banner2.src = "./path/banner2.jpg";
function change()
{
obj = document.getElementById('banner');
if(obj.src == banner1.src)
obj.src = banner2.src;
else
obj.src = banner1.src;
}
setInterval("change();", 3000);
</script>
<img src="./path/banner1.jpg" id="banner" alt=""/>
banner1.src = -> set the path to the banner 1
banner2.src = -> set the path to the banner 2
setInterval("change();", 3000); -> specify in what time interval to rotate banners. 1000 is equals to 1 sec.
Reply With Quote
  #3  
Old 10-14-2009, 04:23 AM
carlobee carlobee is offline
Senior Member
 
Join Date: Jul 2009
Posts: 163
Default Re: get JavaScript code into hosting for banner rotation

thanks for this one.

Reply With Quote
Reply

Tags
banner, code, hosting, javascript, rotation

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 03:38 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.