Guest User

Untitled

a guest
May 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $(document).ready(function(){
  2. animateM();
  3. });
  4. function newPosition(){
  5. var h = $(window).height() - 50;
  6. var w = $(window).width() - 50;
  7. var nh = Math.floor(Math.random() * h);
  8. var nw = Math.floor(Math.random() * w);
  9. return [nh,nw];
  10. }
  11. function animateM(){
  12. var newq = newPosition();
  13. $('.animateM').animate({ top: newq[0], left: newq[1] }, function(){
  14. animateM();
  15. });
  16. };
  17.  
  18. setTimeout(function() {
  19. $('.animateM').animate({
  20. top: newq[0],
  21. left: newq[1],
  22. }, 750);
  23. , 2000 ); // 2000 is duration
Add Comment
Please, Sign In to add comment