Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-22-2024, 06:08 AM   #1
INever
Confirmed User
 
INever's Avatar
 
Join Date: Jan 2005
Location: .......in a niche, in orbit......
Posts: 3,273
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...
__________________
Investment advisory sponsor:50% comm. Minimum $788 payout/join.

I love Camdough
INever is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 06:17 AM   #2
Colmike9
(>^_^)b
 
Colmike9's Avatar
 
Industry Role:
Join Date: Dec 2011
Posts: 7,174
Dynamically populating a JavaScript image slideshow
__________________
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.
I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Colmike9 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 07:21 AM   #3
INever
Confirmed User
 
INever's Avatar
 
Join Date: Jan 2005
Location: .......in a niche, in orbit......
Posts: 3,273
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.
__________________
Investment advisory sponsor:50% comm. Minimum $788 payout/join.

I love Camdough
INever is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 08:06 AM   #4
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 54,527
Quote:
Originally Posted by INever View Post
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.
could use php to grab the file list of the directory and have that spit out the markup needed for the slideshow.
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


my contact: fris at fris.net
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 08:17 AM   #5
INever
Confirmed User
 
INever's Avatar
 
Join Date: Jan 2005
Location: .......in a niche, in orbit......
Posts: 3,273
Quote:
Originally Posted by fris View Post
could use php to grab the file list of the directory and have that spit out the markup needed for the slideshow.
Thnx. Will print and save this page.

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>
__________________
Investment advisory sponsor:50% comm. Minimum $788 payout/join.

I love Camdough
INever is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 09:22 AM   #6
Colmike9
(>^_^)b
 
Colmike9's Avatar
 
Industry Role:
Join Date: Dec 2011
Posts: 7,174
Quote:
Originally Posted by INever View Post
And to all, belated happy 419 or 420 as per your interests.
Happy late 420!
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
__________________
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.
I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Colmike9 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 10:35 AM   #7
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,954
Quote:
Originally Posted by INever View Post
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...
What happened to chatgtp giving us the code with AI?

__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-22-2024, 10:19 PM   #8
zerovic
Confirmed User
 
zerovic's Avatar
 
Industry Role:
Join Date: Apr 2010
Posts: 1,017
i would use php glob to get all images from the folder and jquery setinterval to rotate them.
__________________
php, html, jquery, javascript, wordpress - contact me at contact at zerovic.com
zerovic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2024, 10:50 AM   #9
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 54,527
Quote:
Originally Posted by INever View Post
Thnx. Will print and save this page.

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>
this will use glob to get a list of images and output the html markup (of course you will need to use the proper markup for the js slideshow)

Code:
<?php

$path = 'images/';
$file_types = ['*.jpg', '*.png', '*.gif'];

$images = [];
foreach ($file_types as $file_type) {
    foreach (glob($path . $file_type) as $file) {
        $images[$file] = $path . basename($file);
    };
}

foreach ($images as $i) {
    echo sprintf('<a href="%s"><img src="%s" alt="%s" /></a>', $i, $i, basename($i));
}
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


my contact: fris at fris.net
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2024, 12:20 PM   #10
just a punk
So fuckin' bored
 
just a punk's Avatar
 
Industry Role:
Join Date: Jun 2003
Posts: 32,346
ChatGPT will write this code for you in seconds...
__________________
Obey the Cowgod
just a punk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2024, 12:46 PM   #11
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,954
Quote:
Originally Posted by just a punk View Post
ChatGPT will write this code for you in seconds...
Show us.

__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-23-2024, 01:00 PM   #12
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,954
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


__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-24-2024, 12:15 AM   #13
INever
Confirmed User
 
INever's Avatar
 
Join Date: Jan 2005
Location: .......in a niche, in orbit......
Posts: 3,273


Page Pdf'd/saved.
__________________
Investment advisory sponsor:50% comm. Minimum $788 payout/join.

I love Camdough
INever is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-24-2024, 05:47 AM   #14
adultinnovation
Nomsayin'
 
adultinnovation's Avatar
 
Industry Role:
Join Date: Mar 2019
Location: usa
Posts: 4,190

out of business
__________________
Adult Design
HTML5 programming, Wordpress, Paysite Design, Logo Design & branding, Motion graphics, Tutorial Videos, Motion Advertisement's, 3D and 2D animation
adultinnovation is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-26-2024, 09:25 AM   #15
blackmonsters
Yo Mamma!
 
blackmonsters's Avatar
 
Industry Role:
Join Date: Nov 2002
Location: 🌎🌅🌈🌇
Posts: 19,954
Quote:
Originally Posted by adultinnovation View Post
out of business
How is this different than looking it up on stackoverflow, or github?
Who went out of business because of those sites?

__________________
Camsoda pays :
Become a Cam Model or Sign up as a Webmaster
blackmonsters is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-29-2024, 12:18 PM   #16
NatalieK
Natalie K
 
NatalieK's Avatar
 
Industry Role:
Join Date: Apr 2010
Location: Spain
Posts: 18,560
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?
__________________
My official site NatalieK.xxx My free porn & affiliate blog Natalie K affiliate programFirst time girls
Skype: gspotproductions - "Converting your traffic into income since 2005"
NatalieK is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
infinite, images, folder, serve, slide, belated, celebrate, day, birthday, hitlers, line, google, useless, searching, html, slideshow, days, script/html, easiest



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.