Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(function(){
  2. $('.box').mouseenter(function(){
  3. $('.box').addClass('animated');
  4. })
  5.  
  6. $('.box').mouseleave(function(){
  7. setTimeout(function()
  8. {
  9. $('.box').removeClass('animated');
  10. },800);
  11. })
  12.  
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement