Advertisement
Guest User

Untitled

a guest
Oct 29th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.24 KB | None | 0 0
  1.     function animate(){
  2.     // код, тело цикла
  3.     $(".animate_doc").animate({
  4.         left: "200px",
  5.         top: "200px"
  6.     }, 500);
  7.     $(".animate_doc").animate({
  8.         left: "400px",
  9.         top: "200px"
  10.     }, 500);
  11. };
  12. setInterval(animate.callee, 60);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement