I\'m trying to re-create the bouncing arrow animation like on: http://www.codecomputerlove.com/ but it\'s not going well...
The closest I\'ve got with trying to use the
With the same code you provided, just replace the javascript with this js code.
$(document).ready(function() { function doAnimation() { $(".target").effect( "bounce", {times:3}, 300, doAnimation); } doAnimation(); });