Current location: Hot Scripts Forums » General Web Coding » JavaScript » Changing images based on date


Changing images based on date

Reply
  #1 (permalink)  
Old 04-22-04, 02:44 PM
Genghis Genghis is offline
New Member
 
Join Date: Apr 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Question Changing images based on date

Hi, guys.

I've been struggling with tracking down a good script that will allow me to change the header image on my website based on the day of year. I think it would be nice to do things like Google does where on Halloween a little jack-o-lantern will be on the page, etc. Basically, I want to change out a graphic based on the current date with reference tables of dates and graphics.

Has anyone seen such a script? I'm relatively new to javascript, though I do have some programming background.

Thanks in advance for any help.
Reply With Quote
  #2 (permalink)  
Old 04-23-04, 04:41 AM
Chris Hill Chris Hill is offline
Newbie Coder
 
Join Date: Mar 2004
Location: UK
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
<script language="JavaScript">
var layout = new Array;
layout[0] = "URL of image 1";
layout[1] = "URL of image 2;
layout[2] = "URL of image 3";
layout[3] = "URL of image 4";
layout[4] = "URL of image 5";
layout[2] = "URL of image 6";
layout[3] = "URL of image 7";
var digital = new Date();
var l = digital.getHours(24) % layout.length;

document.write("<img src=" + layout[l] + ">");
</script>

this should work, i have'nt tested it yet though.
__________________
<a href="http://www.WhiteHillStudios.co.uk/home.php" target="_blank">White Hill Studios</a> - driving down the cost of web design<br>
<a href="http://www.agscriptz.com" target="_blank">AG Scriptz ii: renaissance</a> - a new dawn or scripting
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Declared Functions skipper23 PHP 4 12-17-03 10:06 AM
index page not showing up skipper23 PHP 3 12-15-03 01:10 PM
How to find the difference between two dates and make multiple inserts based on it? wyseguy ASP 1 10-08-03 11:53 AM
Date From Access 2000 Database Kaikki ASP 4 09-25-03 06:04 PM
List images and zip before download jaimexyz Script Requests 0 09-01-03 03:01 PM


All times are GMT -5. The time now is 02:15 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.