OMG Just what I need, now with CDN!
https://daneden.me/animate/
1 2 3 4 5 6 7 8 9 10 11 12 |
<link rel="stylesheet" href="//cdn.jsdelivr.net/animatecss/2.1.0/animate.min.css"> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script> $(document).ready(function(){ $(".edit-button").click(function() { $('.edit-button').addClass('animated hinge'); }); }); </script> <input type="button" class="edit-button" name="mybutton" value="mybutton"> |