Submit your widget

Easy slideshow Gallery for jQuery

Created 13 years ago   Views 9610   downloads 2529    Author n/a
Easy slideshow Gallery for jQuery
View DemoDownload
103
Share |

The code used for above gallery (Easy Gallery) is:

$(document).ready(function (){
    $("#gallery").egallery({
        width:500,
        height:230,
        speed: 1000,
        delay:4000,
        easing:'easeInOutBack',
        thumbs:'numbers',
        thumbClass:'tclass',
        aClass:'ac'
    });
});

 

The HTML code for Easy Gallery is:

<div id="gallery">
    <ul>
        <li><img src="eg-images/image1.jpg" border="0" alt="" /></li>
        <li><img src="eg-images/image2.jpg" border="0" alt="" /></li>
        <li><img src="eg-images/image3.jpg" border="0" alt="" /></li>
        <li><img src="eg-images/image4.jpg" border="0" alt="" /></li>
        <li><img src="eg-images/image5.jpg" border="0" alt="" /></li>
    </ul>
</div>
<div id="ssgThumbs"></div>