为了账号安全,请及时绑定邮箱和手机立即绑定

elevateZoom - jQuery 图像缩放插件

elevateZoom - jQuery 图像缩放插件

PHP
繁星点点滴滴 2022-01-08 20:00:20
我想知道如何在移动设备上显示我的网站(尤其是在 Chrome 浏览器中)时启用缩放功能。我正在使用提升缩放 - 一个 jQuery 图像缩放插件 - 它在桌面上工作,但移动视图不起作用。使用的插件:https : //www.elevateweb.co.uk/image-zoom/examples/#mousewheel网站(桌面正在运行):https : //www.shadowboxmilitarygear.com/Vietnam-T-shirt-for-the-back我也需要该插件才能与移动设备一起使用。您对我可以做些什么来启用移动 chrome 上的缩放有任何想法吗?
查看完整描述

1 回答

?
FFIVE

TA贡献1797条经验 获得超6个赞

HTML


<select id="select"> 

<option value="1">Front</option>

<option value="2">Back</option>

<option value="3">Scenery</option>

<option value="4">Side</option>

</select>

JAVASCRIPT


$("#zoom_09").elevateZoom({

            gallery : "gallery_09",

            galleryActiveClass: "active"

                }); 



     $("#select").change(function(e){

   var currentValue = $("#select").val();

   if(currentValue == 1){    

   smallImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image1.png';

   largeImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image1.jpg';

   }

   if(currentValue == 2){    

   smallImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image2.png';

   largeImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image2.jpg';

   }

   if(currentValue == 3){    

   smallImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image3.png';

   largeImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image3.jpg';

   }

   if(currentValue == 4){    

   smallImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/small/image4.png';

   largeImage = 'http://www.elevateweb.co.uk/wp-content/themes/radial/zoom/images/large/image4.jpg';

   }

    // Example of using Active Gallery

  $('#gallery_09 a').removeClass('active').eq(currentValue-1).addClass('active');       



     var ez =   $('#zoom_09').data('elevateZoom');    


  ez.swaptheimage(smallImage, largeImage); 


    });

很有帮助


查看完整回答
反对 回复 2022-01-08
  • 1 回答
  • 0 关注
  • 170 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信