![]() |
How to make an infinite slideshow in HTML?
Searching google is nearly useless these days.
What is the easiest one or two line script/html that will serve an infinite slide show out of a folder of images? I did something like this a million years ago... |
|
Ok will read this. If there's non java methods that's good too.
And to all, belated happy 419 or 420 as per your interests. |
Quote:
|
Quote:
I admit I'm at the Paul Markam level of coding ability but isn't there something simple like: <script> xyxabnd rotate images from <a href="https://image-files.domain.com" #images interval in seconds# </script></a> |
Quote:
This year was the first year I bought it legally, and it was high quality indoor and I got 20% off an ounce with a coupon. Fun times :pimp |
Quote:
:winkwink: |
i would use php glob to get all images from the folder and jquery setinterval to rotate them.
|
Quote:
Code:
<?php |
ChatGPT will write this code for you in seconds...
|
Quote:
:) |
User
What is the easiest one or two line script/html that will serve an infinite slide show out of a folder of images? ChatGPT You can achieve an infinite slideshow with a simple HTML script using JavaScript. Here's a basic example: html Copy code <!DOCTYPE html> <html> <head> <base href="https://gfy.com/" /><!--[if IE]></base><![endif]--> <base href="https://gfy.com/" /><!--[if IE]></base><![endif]--> Ignore this line; was inserted by gfy because I didn't use the code tags <title>Infinite Slideshow</title> <style> #slideshow { position: relative; max-width: 100%; max-height: 100%; margin: auto; } img { width: 100%; height: auto; } </style> </head> <body> <div id="slideshow"></div> <script> var images = ["image1.jpg", "image2.jpg", "image3.jpg"]; // List your image filenames here var index = 0; function nextImage() { index = (index + 1) % images.length; document.getElementById('slideshow').innerHTML = '<img src="' + images[index] + '">'; setTimeout(nextImage, 3000); // Change slide every 3 seconds (adjust as needed) } nextImage(); // Start the slideshow </script> </body> </html> Followed up with : How can I do this from a folder of images though? ChatGPT To create a slideshow from a folder of images dynamically, you'll need to use server-side scripting languages like PHP to fetch the images from the folder and then serve them to the client-side script. Here's how you can modify the previous example to achieve this using PHP: Create an HTML file (e.g., slideshow.html) with the following content: html Copy code <!DOCTYPE html> <html> <head> <title>Infinite Slideshow</title> <style> #slideshow { position: relative; max-width: 100%; max-height: 100%; margin: auto; } img { width: 100%; height: auto; } </style> </head> <body> <div id="slideshow"></div> <script> var images = <?php echo json_encode(glob('images/*.jpg')); ?>; var index = 0; function nextImage() { index = (index + 1) % images.length; document.getElementById('slideshow').innerHTML = '<img src="' + images[index] + '">'; setTimeout(nextImage, 3000); // Change slide every 3 seconds (adjust as needed) } nextImage(); // Start the slideshow </script> </body> </html> That worked; but the file has to have PHP extension :thumbsup |
:banana
Page Pdf'd/saved. |
out of business
|
Quote:
Who went out of business because of those sites? :2 cents: |
would you use html now for a slideshow now?
and for an infinitive slide show, you need either to loop or have infinitive pics or clips... so are you looking for a loop, or zillions of images? |
All times are GMT -7. The time now is 12:23 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc