Is there a way to show a new picture on a web page every day? Obviously, I would preload the pictures, but I haven't seen anything which lets me show just one picture.
cheers - and Happy New Year
Alan
New picture every day?
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
- BaconFries
-
- Posts: 5978
- Joined: Thu Aug 16, 2007 7:32 pm
Re: New picture every day?
Happy New Year. This will require a custom script. See the following.
New Imags Daily
https://stackoverflow.com/questions/288 ... 9#28870839
https://www.mediacollege.com/internet/j ... daily.html
https://www.daniweb.com/digital-media/u ... -every-day
https://www.sitepoint.com/community/t/c ... /256568/15
New Imags Daily
https://stackoverflow.com/questions/288 ... 9#28870839
https://www.mediacollege.com/internet/j ... daily.html
https://www.daniweb.com/digital-media/u ... -every-day
https://www.sitepoint.com/community/t/c ... /256568/15
Re: New picture every day?
Thanks - I understand the code, but I am unsure how to incorporate it into my site.
Any thoughts?
Any thoughts?
- KingSparta
-
- Posts: 311
- Joined: Tue Dec 08, 2020 6:00 pm
- Location: Earth
Re: New picture every day?
Page, page html
Retired military, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com
Re: New picture every day?
Thanks - I'll give it a go
- BaconFries
-
- Posts: 5978
- Joined: Thu Aug 16, 2007 7:32 pm
Re: New picture every day?
@kingsparta Yes but where? as there is a correct way to ibsert

Alan using the script from Dani Web you can insert the javascript as follows Page HTML between <head></head> tags* the image <div></div> insert where you wish to be displayed in what you are using (Layout Grid, Flex) Note you will need to rename the image names to match your own. You may also just want to try using inserting a image as you would normally within the software for the first image. ⁹
Between the <head></head>
Code: Select all
<script>
var dailyPhotos;
var today, img;
dailyPhotos = function() {
today = new Date();
weekday = today.getDay();
showImages = [ ];
myPhotos = [ "sundayPhoto.jpg", "mondayPhoto.jpg", "tuesdayPhoto.jpg", "wednesdayPhoto.jpg", "thursdayPhoto.jpg", "fridayPhoto.jpg", "saturdayPhoto.jpg" ]; // You must specify the path or file name of your images that will be loaded in a weekday basis.
if ( document.images ) {
for ( var x = 0; x < myPhotos.length; x++ ) {
showImages[ x ] = new Image();
showImages[ x ].src = myPhotos[ x ];
} img = (( document.getElementById ) ? document.getElementById("yourImageId") : document.images.yourImageId ); // Specify the id of the image that will get raplaced daily.
img.src = showImages[ weekday ].src;
img.alt = myPhotos[ weekday ];
} return false; // If the browser can't display images, then EXIT FUNCTION.
};
window.onload = dailyPhotos;
</script>
Code: Select all
Insert where you need
<div id="main">
<img id="yourImageId" src="tuesdayPhoto.jpg" alt="DEMO" />
</div>
Re: New picture every day?
Thanks - I'll try that in the morning
- KingSparta
-
- Posts: 311
- Joined: Tue Dec 08, 2020 6:00 pm
- Location: Earth
Re: New picture every day?
it works, you just need to point it to your image folder, right now it is looking in the root folder on the server.
Retired military, Airborne, Air Assault, and Helicopter Flight Wings.
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com
Enjoys model trains, the internet, and ham radio. Located in Fayetteville, NC, USA.
https://MyAAGrapevines.com