Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.42 KB | None | 0 0
  1.     var images = [
  2.         'images/qas_1.png',
  3.         'images/qas_2.png',
  4.         'images/qas_3.png',
  5.         'images/qas_4.png'
  6.     ];
  7.     var cnt = images.length;
  8.  
  9.     $(function() {
  10.         setInterval(Slideshow, 300);
  11.     });
  12.  
  13.     function Slideshow() {
  14.         $('#slideshow').fadeout("slow", function() {
  15.             $(this).attr('src', images[(images.length++) % cnt]).fadeIn("slow");
  16.         });
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement