Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <li>
  2. <div class="pic">
  3. <div class="overlay touch">
  4. <div class="content">extra content here</div>
  5. </div>
  6. <img src="image.jpg" alt="" >
  7. </div>
  8. </li>
  9.  
  10. $(".touch").on("mouseenter mouseleave touchstart", function(e){
  11. if(e.type == 'touchstart') {
  12. $(this).off('mouseenter mouseleave');
  13. }
  14. $(this).toggleClass("hover");
  15. });
Add Comment
Please, Sign In to add comment