Guest User

Untitled

a guest
Jan 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. var speed = 55; //speed in ms
  2. $(function(){
  3.  
  4. $("#projects img").hide();
  5.  
  6. timer = setInterval(function () {
  7.  
  8. $notLoaded = $("#projects img").not(".loaded");
  9. $notLoaded.eq(Math.floor(Math.random() * $notLoaded.length)).fadeIn().addClass("loaded");
  10.  
  11. if ($notLoaded.length == 0) {
  12. clearInterval(timer);
  13. }
  14. }, speed);
  15.  
  16. });
Add Comment
Please, Sign In to add comment