Guest User

Untitled

a guest
Jul 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. From
  2. $('#slot1').animate({
  3. top: "-=50"
  4. }, {
  5. duration: 750,
  6. specialEasing: {
  7. top: 'easeInQuad'
  8. },
  9. complete: function () {
  10. $('#slot1').css('top', 0);
  11. }
  12. });
  13.  
  14. $('#slot2').animate({
  15. top: "-=50"
  16. }, {
  17. duration: 750,
  18. specialEasing: {
  19. top: 'easeInQuad'
  20. },
  21. complete: function () {
  22. $('#slot2').css('top', 0);
  23. }
  24. });
  25.  
  26. $('#slot3').animate({
  27. top: "-=50"
  28. }, {
  29. duration: 750,
  30. specialEasing: {
  31. top: 'easeInQuad'
  32. },
  33. complete: function () {
  34. $('#slot3').css('top', 0);
  35. }
  36. });
  37. To
  38. $('#slot1, #slot2, #slot3').animate({
  39. top: "-=50"
  40. }, {
  41. duration: 750,
  42. specialEasing: {
  43. top: 'easeInQuad'
  44. },
  45. complete: function(){
  46. $(this).css('top', 0);
  47. }
  48. });
Add Comment
Please, Sign In to add comment