Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 20th, 2005, 03:12 PM
Authorized User
 
Join Date: Dec 2004
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to DSteven Send a message via MSN to DSteven
Default Does anyone know a java script for rotating images

i want to have banner ads on my website, i want a java script if there is one which will change the banner to a different one each time someone refresh's page. i hope what i have said makes some sence.

thanks steven

 
Old August 21st, 2005, 04:48 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

If you want to do this client-side then you just need to use the Math.random method which returns a "random" number between 0 and 0.999...
So if you have five images:
Code:
function getRandomInteger(To)
{
  return Math.round(Math.random() * To));
}

function setBannerImage(Index)
{
  var colImages = ["bannerImage1.gif",
                   "bannerImage2.gif",  
                   "bannerImage3.gif",  
                   "bannerImage4.gif",  
                   "bannerImage5.gif"];
  document.getElementById("imgBanner").src = colImages[Index];
}
Then in your HTML give the banner image an id of "imgBanner" and as the page loads call:
Code:
setBannerImage(getImageIndex(4));
--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP Captcha Script not rendering images - broken crmpicco Beginning PHP 2 October 13th, 2007 07:45 AM
Java Script srkarthik_82 General .NET 0 December 28th, 2006 05:03 AM
java script [email protected] Javascript How-To 1 March 22nd, 2006 04:10 AM
Java vs Java Script functions joemorrison74 J2EE 0 July 6th, 2005 04:28 PM
Rotating images with PHP dean_custom PHP How-To 2 March 23rd, 2004 10:10 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.