/ Published in: jQuery
A simple left-right animation
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(function () { function runIt() { $('.arrowYellow').show("slow") .animate({"marginLeft":"10px"},600) .animate({"marginLeft":"0px"},600) runIt(); } runIt(); });