Guest User

Untitled

a guest
Mar 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $('.animated-hover').each(function(i) {
  2. $(this).on('mouseover', function() {
  3. $(this).addClass('animated');
  4. })
  5. .on('mouseout', function() {
  6. $(this).removeClass('animated');
  7. });
  8. });
Add Comment
Please, Sign In to add comment