Guest User

Untitled

a guest
Jul 15th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $('.featureItems li').hover(
  2. function(){ $(this).addClass('hover') },
  3. function(){ $(this).removeClass('hover') }
  4. )
  5.  
  6. $('.featureItems li').hover(
  7. function(){ $(this).addClass('hover', 500) },
  8. function(){ $(this).removeClass('hover', 500) }
  9. )
  10.  
  11. $('.featureItems li').hover(
  12. function(){ $(this).stop(true).addClass('hover', 500) },
  13. function(){ $(this).stop(true).removeClass('hover', 500) }
  14. )
  15.  
  16. $('.featureItems li').hover(
  17. function(){ $(this).stop(true).addClass('hover', 500) },
  18. function(){ $(this).removeClass('hover', 500) }
  19. )
Add Comment
Please, Sign In to add comment