Return to Snippet

Revision: 69788
at September 7, 2015 22:02 by envane21


Initial Code
$(function () {
  function runIt() {
    $('.arrowYellow').show("slow")
    .animate({"marginLeft":"10px"},600)
    .animate({"marginLeft":"0px"},600)
    runIt();
  }

  runIt();
});

Initial URL


Initial Description
A simple left-right animation

Initial Title
Simple Left - Right Animation

Initial Tags
animation

Initial Language
jQuery