Skip to main content

Posts

Showing posts with the label Carousel

A Small And a Easy proceedure to make the jquery Carousel

javaScript Code <script> $(document).ready(function() { var img_array =[ "food1.jpg", "food3.jpg" ,"food4.jpg"]; var i=-1; var interval=setInterval(function(){slide()},5000); function slide() {                 i++;                 $('#banner').attr('src',img_array[i]).effect("bounce","slow");                 if(i==2)                 {                                 i=-1;                 }      ...