Guest User

Untitled

a guest
Jan 15th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. setInterval(function() {
  2. var number = Math.floor(Math.random() * 9);
  3. $('#digit1').animate({
  4. top: "-45px"
  5. }, 300, function() {
  6. $(this).css('top', '0px');
  7. $('#digit1').text(number);
  8. });
  9. }, 1000);​
Add Comment
Please, Sign In to add comment