Skip to content

Instantly share code, notes, and snippets.

@likerRr
Last active August 29, 2015 14:27
Show Gist options
  • Save likerRr/726af4b62e8703913f24 to your computer and use it in GitHub Desktop.
Save likerRr/726af4b62e8703913f24 to your computer and use it in GitHub Desktop.
jquery-epulse Ripple Button
<button id="ripple-button">Ripple button</button>
$.fn.ripple = function () {
$(this).ePulse({bgColor: 'rgba(225, 190, 231, 0.5)', event: 'mousedown'})
};
$("#ripple-button")
.attr('style', 'position: relative;overflow: hidden;background: #009688;color: white;padding: 5px 10px; border: transparent;')
.ripple();
@likerRr
Copy link
Author

likerRr commented Aug 18, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment