Skip to content

Instantly share code, notes, and snippets.

@Tab3r
Created October 23, 2014 16:24
Show Gist options
  • Save Tab3r/56f55c9b1f7d4e2fd70c to your computer and use it in GitHub Desktop.
Save Tab3r/56f55c9b1f7d4e2fd70c to your computer and use it in GitHub Desktop.
// Light beat in jQuery
function pulse(imgId) {
$(imgId).animate({
opacity: 0.7
}, 700, function() {
$(imgId).animate({
opacity: 1
}, 700);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment