Slideshow

Developer
Size
2,037 Kb
Views
6,072

How do I make an slideshow?

What is a slideshow? How do you make a slideshow? This script and codes were developed by Kelly Kalouta on 14 November 2022, Monday.

Slideshow Previews

Slideshow - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>slideshow</title> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="slider">	<input type="radio" name="slide_switch" id="id1"/>	<label for="id1">	<img src="http://thecodeplayer.com/uploads/media/3yiC6Yq.jpg" width="100"/>	</label>	<img src="http://thecodeplayer.com/uploads/media/3yiC6Yq.jpg"/>	<!--Lets show the second image by default on page load-->	<input type="radio" name="slide_switch" id="id2" checked="checked"/>	<label for="id2">	<img src="http://thecodeplayer.com/uploads/media/40Ly3VB.jpg" width="100"/>	</label>	<img src="http://thecodeplayer.com/uploads/media/40Ly3VB.jpg"/>	<input type="radio" name="slide_switch" id="id3"/>	<label for="id3">	<img src="http://thecodeplayer.com/uploads/media/00kih8g.jpg" width="100"/>	</label>	<img src="http://thecodeplayer.com/uploads/media/00kih8g.jpg"/>	<input type="radio" name="slide_switch" id="id4"/>	<label for="id4">	<img src="http://thecodeplayer.com/uploads/media/2rT2vdx.jpg" width="100"/>	</label>	<img src="http://thecodeplayer.com/uploads/media/2rT2vdx.jpg"/>	<input type="radio" name="slide_switch" id="id5"/>	<label for="id5">	<img src="http://thecodeplayer.com/uploads/media/8k3N3EL.jpg" width="100"/>	</label>	<img src="http://thecodeplayer.com/uploads/media/8k3N3EL.jpg"/>
</div> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
</body>
</html>

Slideshow - Script Codes CSS Codes

* {margin: 0; padding: 0;}
body {background: #ccc;}
.slider{	width: 640px;	position: relative;	padding-top: 320px;	margin: 100px auto;	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75);
}
.slider>img{	position: absolute;	left: 0; top: 0;	transition: all 0.5s;
}
.slider input[name='slide_switch'] {	display: none;
}
.slider label {	margin: 18px 0 0 18px;	border: 3px solid #999;	float: left;	cursor: pointer;	transition: all 0.5s;	opacity: 0.6;
}
.slider label img{	display: block;
}
.slider input[name='slide_switch']:checked+label {	border-color: #666;	opacity: 1;
}
.slider input[name='slide_switch'] ~ img {	opacity: 0;	transform: scale(1.1);
}
.slider input[name='slide_switch']:checked+label+img {	opacity: 1;	transform: scale(1);
}
Slideshow - Script Codes
Slideshow - Script Codes
Home Page Home
Developer Kelly Kalouta
Username kelkal
Uploaded November 14, 2022
Rating 3
Size 2,037 Kb
Views 6,072
Do you need developer help for 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!

Kelly Kalouta (kelkal) Script Codes
Create amazing blog posts 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!