简体   繁体   English

在鼠标hover效果中添加2-3张图片

[英]Add 2-3 images in the mouse hover effect

I have made this code for mouse hover zoom effect and it is working without error.我已经为鼠标 hover 缩放效果制作了这个代码,它可以正常工作。 But I want to add 2-3 images so as the user clicks on it, then that image is shown and mouse hover effect works on it, ie on hovering the mouse on the picture shows a zoom effect.但是我想添加 2-3 个图像,以便用户单击它,然后显示该图像并且鼠标 hover 效果对其起作用,即将鼠标悬停在图片上显示缩放效果。

Here is my code:这是我的代码:

function imageZoom(imgID, resultID) {
  var img, lens, result, cx, cy;
  img = document.getElementById(imgID);
  result = document.getElementById(resultID);
  /*create lens:*/
  lens = document.createElement("DIV");
  lens.setAttribute("class", "img-zoom-lens");
  /*insert lens:*/
  img.parentElement.insertBefore(lens, img);
  /*calculate the ratio between result DIV and lens:*/
  cx = result.offsetWidth / lens.offsetWidth;
  cy = result.offsetHeight / lens.offsetHeight;
  /*set background properties for the result DIV:*/
  result.style.backgroundImage = "url('" + img.src + "')";
  result.style.backgroundSize = (img.width * cx) + "px " + (img.height * cy) + "px";
  /*execute a function when someone moves the cursor over the image, or the lens:*/
  lens.addEventListener("mousemove", moveLens);
  img.addEventListener("mousemove", moveLens);
  /*and also for touch screens:*/
  lens.addEventListener("touchmove", moveLens);
  img.addEventListener("touchmove", moveLens);
  
  /*initialise and hide lens result*/
  result.style.display = "none";
  /*Reveal and hide on mouseover or out*/
  lens.onmouseover = function(){result.style.display = "block";};
  lens.onmouseout = function(){result.style.display = "none";};
  
  function moveLens(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);
    /*calculate the position of the lens:*/
    x = pos.x - (lens.offsetWidth / 2);
    y = pos.y - (lens.offsetHeight / 2);
    /*prevent the lens from being positioned outside the image:*/
    if (x > img.width - lens.offsetWidth) {x = img.width - lens.offsetWidth;}
    if (x < 0) {x = 0;}
    if (y > img.height - lens.offsetHeight) {y = img.height - lens.offsetHeight;}
    if (y < 0) {y = 0;}
    /*set the position of the lens:*/
    lens.style.left = x + "px";
    lens.style.top = y + "px";
    /*display what the lens "sees":*/
    result.style.backgroundPosition = "-" + (x * cx) + "px -" + (y * cy) + "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};
  }
};

imageZoom("myimage", "myresult");

* {box-sizing: border-box;}

.img-zoom-container {
  position: relative;
  display: flex;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  position: absolute;
  left: 300px; /*match width of #myimage*/
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}

<h1>Image Zoom</h1>

<p>Mouse over the image:</p>

<div class="img-zoom-container">
  <img id="myimage" src="https://hatrabbits.com/wp-content/uploads/2018/10/risky-assumptions.jpg" width="300" height="240">
  <div id="myresult" class="img-zoom-result" style=""></div>
</div>

<p>The image must be placed inside a container with relative positioning.</p>
<p>The result can be put anywhere on the page, but must have the class name "img-zoom-result".</p>
<p>Make sure both the image and the result have IDs. These IDs are used when a javaScript initiates the zoom effect.</p>
 

I was searching for the answer and hope here i will get the solution.我正在寻找答案,希望在这里我能得到解决方案。

Thank you in advance.先感谢您。

Just add more picture like this:只需添加更多这样的图片:

<div class="img-zoom-container">
  <img id="myimage" src="https://hatrabbits.com/wp-content/uploads/2018/10/risky-assumptions.jpg" width="300" height="240">
  <div id="myresult" class="img-zoom-result" style=""></div>
</div>


<div class="img-zoom-container">
  <img id="myimage2" src="https://hatrabbits.com/wp-content/uploads/2018/10/risky-assumptions.jpg" width="300" height="240">
  <div id="myresult2" class="img-zoom-result" style=""></div>
</div>



<div class="img-zoom-container">
  <img id="myimage3" src="https://hatrabbits.com/wp-content/uploads/2018/10/risky-assumptions.jpg" width="300" height="240">
  <div id="myresult3" class="img-zoom-result" style=""></div>
</div>

Then add more calling function然后添加更多调用 function

imageZoom("myimage", "myresult");
imageZoom("myimage2", "myresult2");
imageZoom("myimage3", "myresult3");

;) ;)

 img { height: 100px; width: 200px; background-color: blue; } img:hover { height: 200px; width: 400px; background-color: red; }
 <img src="">

no need for JS to have a hover effect on an image. JS 不需要对图像产生 hover 效果。 You can do that purely with CSS by adding :hover to its class/id.您可以通过将:hover添加到其类/ID 来纯粹使用 CSS 来做到这一点。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM