Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.1k views
in Technique[技术] by (71.8m points)

javascript - Multiple functions for mouseover and mouseout

There is an array of images. I apply function imageZoom() for each image.

I also need to add and remove class _show on mouseover and on mouseout.

In code bellow doesn`t work adding class.

But if I delete imageZoom(), adding and removing works fine.

What am I doing wrong?

for (let image of slideImages) {
    image.addEventListener('mouseover', function (e) {
        imageZoom(e.target.id, `${ e.target.id }-result`);
        document.getElementById(e.target.id+'-result').classList.add('_show');
    });
    image.addEventListener('mouseout', function (e) {
        document.getElementById(e.target.id+'-result').classList.remove('_show');
    });
 }

Full code:

// list of images
// with RANDOM IDs!
const images = [{
    id: Date.now() - 400,
    src: 'https://loremflickr.com/1200/960/girl/all?random=1'
  },
  {
    id: Date.now() - 200,
    src: 'https://loremflickr.com/1200/960/girl/all?random=2'
  },
  {
    id: Date.now() + 200,
    src: 'https://loremflickr.com/1200/960/girl/all?random=3'
  },
  {
    id: Date.now() + 400,
    src: 'https://loremflickr.com/1200/960/girl/all?random=4'
  },
];

// displaying images
(function(images) {

  let html = ''
  images.forEach(image => {
    html += `
      <h2>ID: ${ image.id }</h2>
      <div class="img-zoom-container d-flex">
        <img id="${ image.id }" src="${image.src}" width="300" height="240" alt="Girl">
        <div id="${ image.id }-result" class="img-zoom-result"></div>
      </div>
      <hr />
    `
  })
  const container = document.getElementById('container')
  container.innerHTML = html

  const imagelist = document.querySelectorAll('.img-zoom-container > img')

  // adding event listener for the random IDs
  for (let image of imagelist) {
    image.addEventListener('mouseover', function (e) {
        imageZoom(e.target.id, `${ e.target.id }-result`)
        document.getElementById(e.target.id+'-result').classList.add('_show');
    });
    image.addEventListener('mouseout', function (e) {
        document.getElementById(e.target.id+'-result').classList.remove('_show');
    });
 }

})(images);


// code from W3 Schools
// https://www.w3schools.com/howto/howto_js_image_zoom.asp
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);

  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
    };
  }
}
* {
  box-sizing: border-box;
}

.d-flex {
  display: flex;
}

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

.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;
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}
<div id="container"></div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...