admin管理员组文章数量:1345081
When the mouse starts hovering over an element because of scrolling (either by wheel, or by keyboard scrolling), it does not trigger a mouseover event on the elements it is hovering (Chrome 6 on OSX). What would be an elegant way to trigger the mouseover event for the correct elements when scrolling?
When the mouse starts hovering over an element because of scrolling (either by wheel, or by keyboard scrolling), it does not trigger a mouseover event on the elements it is hovering (Chrome 6 on OSX). What would be an elegant way to trigger the mouseover event for the correct elements when scrolling?
Share Improve this question edited Sep 3, 2022 at 7:18 Jasper de Vries 20.3k6 gold badges67 silver badges107 bronze badges asked Jul 27, 2010 at 6:24 Andrey FedorovAndrey Fedorov 9,70922 gold badges69 silver badges99 bronze badges3 Answers
Reset to default 5Honestly, this is gonna be a pain. You'll have to
- determine the size and position of every element that should get a mouseover handler.
- add a scroll listener to the window.
- In the handler, get the mouse cursor position and pageOffset.
- Find out which element(s) the cursor is in.
- manually call the actual mouseover handler
- (Find out which elements the cursor has left, if you want some mouseout behaviour too)
You may need to re-calculate the elements' positions and sizes if they are dynamic. (move 1. beneath 3.)
While this should work fine with block-level elements, I have absolutely no idea on a solution for inline elements.
This is much more simple in the modern day web using document.elementsFromPoint
:
- Add a scroll listener to the window.
- In the handler, call
document.elementsFromPoint
. - Manually call the actual
pointerover
handler for those elements. Keep track of these elements. - (optionally) Manually call the actual
pointermove
handler for those elements. - Check the list of elements from the previous time around. Manually call the actual
pointerleave
handler for elements no longer being hovered.
Here's some psuedo-code:
let prevHoveredEls = [];
document.addEventListener("scroll", (e) => {
let hoveredEls = document.elementsFromPoint(e.pageX, e.pageY);
hoveredEls = hoveredEls.filter(
(el) => el.classList.contains("elements-cared-about")
);
const notHoveredEls = prevHoveredEls.filter(
(el) => !prevHoveredEls.includes(el)
);
hoveredEls.forEach((el) => {
const bcr = el.getBoundingClientRect();
el.handlePointerEnter({
layerX: e.pageX - bcr.left,
layerY: e.pageY - bcr.top,
});
});
notHoveredEls.forEach((el) => {
const bcr = el.getBoundingClientRect();
el.handlePointerLeave({
layerX: e.pageX - bcr.left,
layerY: e.pageY - bcr.top,
});
});
prevHoveredEls = hoveredEls;
});
Try some hack like myDiv.style.opacity = 1+Math.random();
on scroll ;)
本文标签: javascriptHow can I make page scrolling trigger mouseover eventsStack Overflow
版权声明:本文标题:javascript - How can I make page scrolling trigger mouseover events? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743755a2531375.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论