Return to Snippet

Revision: 69786
at September 7, 2015 21:57 by envane21


Initial Code
function ani() {
  $('.arrow').animate({
    top: '-5px',
    queue: true,
  }, 1000).animate({
    top: '5px',
    queue: true
  }, 500, ani);
};

Initial URL


Initial Description
Make an element move left - right

Initial Title
Arrow Movement Loop

Initial Tags


Initial Language
jQuery