Guest User

Untitled

a guest
May 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $(function(){
  2. var imagesz = ['#imgone', '#imgtwo', '#imgthree', '#imgfour'],
  3. parent = $('#parent');
  4.  
  5.  
  6. (function nextImages(){
  7. var imgas = imagesz.slice();
  8.  
  9. for(var i=0; i<3; i++){
  10. var z = $(imgas.splice(0|Math.random() * imgas.length, 1)[0]).delay(15).fadeIn(15).delay(200).fadeOut(50, i ? $.noop : nextImages)
  11. alert(z);
  12. parent.append(
  13. $(imgas.splice(0|Math.random() * imgas.length, 1)[0]).delay(15).fadeIn(15).delay(4500-(15*i)).fadeOut(50, i ? $.noop : nextImages)
  14. );
  15. }
  16. })();
  17.  
  18.  
  19. });
Add Comment
Please, Sign In to add comment