No effect slideshow

Developer
Size
2,123 Kb
Views
6,072

How do I make an no effect slideshow?

There is no any effect in this slideshow just load instantly one-by-on in loop.. What is a no effect slideshow? How do you make a no effect slideshow? This script and codes were developed by Krishna Babu on 11 January 2023, Wednesday.

No effect slideshow Previews

No effect slideshow - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>No effect slideshow</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <header> <h1>Slider without any effect</h1> </header>
<div class="fdiv"> <ul id="fslider"> <li><img src="http://www.flashaddicts.com/clientdisplay/images/1.jpg"/> </li> <li><img src="http://www.flashaddicts.com/clientdisplay/images/2.jpg"/> </li> <li><img src="http://www.flashaddicts.com/clientdisplay/images/3.jpg"/> </li> <li><img src="http://www.flashaddicts.com/clientdisplay/images/4.jpg"/> </li> </ul> </div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

No effect slideshow - Script Codes CSS Codes

*{margin:0; padding:0;}
@import url(https://fonts.googleapis.com/css?family=Raleway:400, 900);
body{background-color:#000; font-family: 'Raleway', sans-serif; color: #fff;}
header h1{ text-align: center; font-weight: bold; margin: 20px 0;
}	ul{position:relative;}	li{position:absolute;top:0;left:0;list-style:none; float:left;}	.fdiv{display:block; width:800px; height:300px; overflow:hidden; margin:0 auto; background-color:#ccccff;}

No effect slideshow - Script Codes JS Codes

$(document).ready(function(){	var counter=0;	$('#fslider li').css('opacity','0');	$('#fslider li:eq('+counter+')').css('opacity','1');	setInterval(function(){	$('#fslider li:eq('+counter+')').css('opacity','0');	counter++;	counter = (counter > ($('#fslider li').size() - 1))?0:counter;	$('#fslider li:eq('+counter+')').css('opacity','1');	}, 2000);//time controller	})
No effect slideshow - Script Codes
No effect slideshow - Script Codes
Home Page Home
Developer Krishna Babu
Username krishnab
Uploaded January 11, 2023
Rating 3
Size 2,123 Kb
Views 6,072
Do you need developer help for No effect 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!

Krishna Babu (krishnab) Script Codes
Create amazing web content 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!