Awesome Slideshow Javascript



Download Jquery plugin in here


HTML (slideshow.html)

<html>
<head><title>Javascript Slide Show</title>

<script type="text/javascript">


function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    // use this to pull the images in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');

    // uncomment the 3 lines below to pull the images in random order
 
    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );


    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 3000 );
});

</script>
<script type="text/javascript" href="jquery.min"></script> \\download Jquery min in this blog
<style>#slideshow {
    position:relative;
    height:393px;
}

#slideshow IMG {
position:absolute;
top:0;
left:0;
z-index:8;
opacity:0.0;
width: 153px;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}
</style>

<body>

<div id="slideshow">
    <img src="1.jpg" alt="Slideshow Image 1" width="153" height="393" class="active" />
    <img src="2.jpg" alt="Slideshow Image 2" width="153" height="393" />
    <img src="3.jpg" alt="Slideshow Image 3" width="153" height="393" />
</div>

</body>
</html>