Skip to content

Instantly share code, notes, and snippets.

@webfella
webfella / bootyshaker.coffee
Created August 21, 2012 12:14
Wobble function
# small function to use with jquery to shake an element.
shakeThatBooty = (e, amount, counter) ->
speed = 50
if (counter == 0) then return
e.animate
right: amount
, speed, ->
e.animate
right: -amount