Simplest CSS Slideshow

Developer
Size
1,994 Kb
Views
30,360

How do I make an simplest css slideshow?

CodePen version of http://snook.ca/archives/html_and_css/simplest-css-slideshow. What is a simplest css slideshow? How do you make a simplest css slideshow? This script and codes were developed by Bramus on 22 July 2022, Friday.

Simplest CSS Slideshow Previews

Simplest CSS Slideshow - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Simplest CSS Slideshow</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <!-- CodePen version of http://snook.ca/archives/html_and_css/simplest-css-slideshow -->
<div class="fadein"> <img src="http://farm3.static.flickr.com/2610/4148988872_990b6da667.jpg"> <img src="http://farm3.static.flickr.com/2597/4121218611_040cd7b3f2.jpg"> <img src="http://farm3.static.flickr.com/2531/4121218751_ac8bf49d5d.jpg">
</div> <script src="js/index.js"></script>
</body>
</html>

Simplest CSS Slideshow - Script Codes CSS Codes

/* CodePen version of http://snook.ca/archives/html_and_css/simplest-css-slideshow */
body {font-family:Arial, Helvetica, sans-serif; font-size:12px;}
@keyframes fade { 0% { opacity: 0; } 11.11% { opacity: 1; } 33.33% { opacity: 1; } 44.44% { opacity: 0; } 100% { opacity: 0; }
}
.fadein { position:relative; height:332px; width:500px; outline: 1px solid blue; margin: 0 auto; }
.fadein img { position:absolute; left:0; right:0; opacity:0; animation-name: fade; animation-duration: 9s; animation-iteration-count: infinite; }
.fadein img:nth-child(1) { animation-delay: 0s; }
.fadein img:nth-child(2) { animation-delay: 3s; }
.fadein img:nth-child(3) { animation-delay: 6s; }

Simplest CSS Slideshow - Script Codes JS Codes

// None
Simplest CSS Slideshow - Script Codes
Simplest CSS Slideshow - Script Codes
Home Page Home
Developer Bramus
Username bramus
Uploaded July 22, 2022
Rating 3
Size 1,994 Kb
Views 30,360
Do you need developer help for Simplest CSS Slideshow?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Bramus (bramus) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!