Advertisement
hendrajeg

css hover mobile zoom button

Jun 21st, 2022
1,393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.52 KB | None | 0 0
  1. jQuery(function($) {
  2.     $( document ).ready(function() {
  3.         if ("ontouchstart" in window || navigator.msMaxTouchPoints) {
  4.             $('.zoom-item-wrapper').css('display','none');
  5.             $('.zoom-dropdown').click(function(e) {
  6.                 if($('.zoom-item-wrapper').css('display') != 'none') {
  7.                     $('.zoom-item-wrapper').css('display','none');
  8.                 }else{
  9.                     $('.zoom-item-wrapper').css('display','block');
  10.                 }
  11.             });
  12.         }
  13.     });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement