Luce Digitale/JQ Sunny DIV Slideshow – Basic
DEMO
Today I code a funny little div slideshow in only 9 lines of code.
Last night I start studying some sample code on the web, this is the simplest solution in my opinion:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | <!DOCTYPE html> <html> <!-- Luce Digitale/JQ Sunny DIV Slideshow START (Only 9 little lines of code ) --> <!-- Author: Andrea Tonin - http://blog.lucedigitale.com --> <!-- This code come with absolutely no warranty --> <!-- Thanks in advance --> <head> <title>Luce Digitale/JQ Sunny DIV Slideshow</title> <style type= "text/css" > /* slideshow container style START */ .slideshow{ width : 800px ; height : 450px ; /* slideshow container size width height */ margin : 0 auto ; border : 3px solid #CECECE ; } /* slideshow container style END */ /* slideshow content setup START */ .slideshow div{ position : absolute ; margin : 0 ; padding : 0 ;} /* All div in the same position */ .slideshow div{ width : 800px ; height : 450px ;} /* same slideshow container width height */ /* slideshow content setup END */ </style> <script type= "text/javascript" src= "js/jquery-2.0.3.js" ></script> <script> $(document).ready(function(){ // Luce Digitale/JQ Sunny DIV Slide START (Only 9 little lines of code ) $(function JQSunnyDivSlideFading(){ $( '.slideshow div:gt(0)' ). hide (); // hide all div setInterval(function(){ // setInterval repeat the execution of the function each xxx milliseconds $( '.slideshow :first-child' ).fadeOut() // fade out the first image .next( 'div' ).fadeIn() // fade in the next div .end().appendTo( '.slideshow' );}, // reset jQuery's internal reference 3000 ); // launches a function each 3000 milliseconds }); // Luce Digitale/JQ Sunny DIV Slide END }); </script> </head> <body> <!-- Slideshow START --> <!-- If JQuery do not work you see only the first div --> <div class= "slideshow" > <div style= "background-color: rgba(255,0,0,1);font-size:2em" ;>Div 1 Content</div> <div style= "background-color: rgba(0,255,0,1);font-size:3em" ;>Div 2 Content</div> <div style= "background-color: rgba(0,0,255,1);font-size:4em" ;>Div 3 Content</div> <div style= "background-color: rgba(255,0,255,1);font-size:5em" ;>Div 4 Content</div> </div> <!-- Slideshow END --> </body> </html> |