停止在移动设备上运行jQuery图像缩放

问题描述 投票:0回答:1

我有jquery图像缩放库easyzoom在我的桌面应用程序上成功运行。

但是我想在渲染所有移动设备(包括所有iPad设备)时关闭它。

尽管通过媒体查询或修改脚本,实现这一目标的最佳方法是什么。任何帮助或指导将不胜感激。

的index.php

<script>




    var images = document.querySelectorAll(".img-magnifier-container img");
    var image;
    for(var i = 0; i < images.length; i++) {
       image = images[i];
       if(image.complete) {
           magnify(image, 3);
       } else {
            image.addEventListener("load", enableMagnify, false);
       }
    }


    function enableMagnify(e) {
        magnify(e.currentTarget, 2);
    }



</script>

easyzoom.js

function magnify(imgID, zoom) {


var img, glass, w, h, bw;
img = imgID;

/*create magnifier glass:*/
glass = document.createElement("DIV");
glass.setAttribute("class", "img-magnifier-glass");

/*insert magnifier glass:*/
img.parentElement.insertBefore(glass, img);

/*set background properties for the magnifier glass:*/
glass.style.backgroundImage = "url('" + img.src + "')";
glass.style.backgroundRepeat = "no-repeat";
glass.style.backgroundSize = (img.width * zoom) + "px " + (img.height * zoom) + "px";
bw = 3;
w = glass.offsetWidth / 2;
h = glass.offsetHeight / 2;

/*execute a function when someone moves the magnifier glass over the image:*/
glass.addEventListener("mousemove", moveMagnifier);
img.addEventListener("mousemove", moveMagnifier);

/*and also for touch screens:*/
glass.addEventListener("touchmove", moveMagnifier);
img.addEventListener("touchmove", moveMagnifier);

function moveMagnifier(e) {
  var pos, x, y;
  /*prevent any other actions that may occur when moving over the image*/
  e.preventDefault();
  /*get the cursor's x and y positions:*/
  pos = getCursorPos(e);
  x = pos.x;
  y = pos.y;
  /*prevent the magnifier glass from being positioned outside the image:*/
  if (x > img.width - (w / zoom)) {x = img.width - (w / zoom);}
  if (x < w / zoom) {x = w / zoom;}
  if (y > img.height - (h / zoom)) {y = img.height - (h / zoom);}
  if (y < h / zoom) {y = h / zoom;}
  /*set the position of the magnifier glass:*/
  glass.style.left = (x - w) + "px";
  glass.style.top = (y - h) + "px";

  /*display what the magnifier glass "sees":*/
  glass.style.backgroundPosition = "-" + ((x * zoom) - w + bw) + "px -" + ((y * zoom) - h + bw) + "px";
}


function getCursorPos(e) {
  var a, x = 0, y = 0;
  e = e || window.event;
  /*get the x and y positions of the image:*/
  a = img.getBoundingClientRect();
  /*calculate the cursor's x and y coordinates, relative to the image:*/
  x = e.pageX - a.left;
  y = e.pageY - a.top;
  /*consider any page scrolling:*/
  x = x - window.pageXOffset;
  y = y - window.pageYOffset;
  return {x : x, y : y};
}


} // end of function ///////////
javascript jquery image-zoom
1个回答
0
投票

也许你可以使用这样的东西,但可能有更好的方法来做到这一点。

let windowWidth = window.innerWidth;
if(windowWidth > 1024) {
}
© www.soinside.com 2019 - 2024. All rights reserved.