为什么 mouseout 和 mouseleave 总是触发

发布于 2025-01-09 09:34:54 字数 1027 浏览 0 评论 0原文

我真的不明白为什么 p 元素总是隐藏的(因此为什么 mouseout 总是触发):

const canvas = document.querySelector("canvas");
const infoBox = document.querySelector("#info-box")
canvas.addEventListener("mousemove", evt => {
    evt.preventDefault()
    infoBox.style.display="block"
    infoBox.style.position="absolute"
    infoBox.style.top= evt.clientY+"px"
    infoBox.style.left=evt.clientX+"px"
    console.log("moved")
})
canvas.addEventListener("mouseout", evt => {
    evt.preventDefault()
    infoBox.style.display="none"
    console.log("exit")
}, false)
canvas{
    border-width: 0px;
    border-color:#212121;
    background-color: blue;
}
<canvas></canvas>
<div id="info-box" style="display: none;"><p>Hello</p></div>

I really don't get why the p element is always hidden (and therefore why the mouseout is always firing):

const canvas = document.querySelector("canvas");
const infoBox = document.querySelector("#info-box")
canvas.addEventListener("mousemove", evt => {
    evt.preventDefault()
    infoBox.style.display="block"
    infoBox.style.position="absolute"
    infoBox.style.top= evt.clientY+"px"
    infoBox.style.left=evt.clientX+"px"
    console.log("moved")
})
canvas.addEventListener("mouseout", evt => {
    evt.preventDefault()
    infoBox.style.display="none"
    console.log("exit")
}, false)
canvas{
    border-width: 0px;
    border-color:#212121;
    background-color: blue;
}
<canvas></canvas>
<div id="info-box" style="display: none;"><p>Hello</p></div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终遇你 2025-01-16 09:34:54

每次出现信息框时都会发生退出。
#info-box div 添加偏移量意味着鼠标认为它没有离开画布。

const canvas = document.querySelector("canvas");
const infoBox = document.querySelector("#info-box");
const mouseOffset = 2;

canvas.addEventListener("mousemove", evt => {
  evt.preventDefault()
  infoBox.style.display = "block"
  infoBox.style.position = "absolute"
  infoBox.style.top = evt.clientY + mouseOffset + "px" // add an offset here
  infoBox.style.left = evt.clientX + mouseOffset + "px" // and here
  console.log("moved")
})
canvas.addEventListener("mouseout", evt => {
  evt.preventDefault()
  infoBox.style.display = "none"
  console.log("exit")
}, false)
canvas {
  border-width: 0px;
  border-color: #212121;
  background-color: blue;
}
<canvas></canvas>
<div id="info-box" style="display: none;">
  <p>Hello</p>
</div>

The exit happens every time the info-box appears.
Adding an offset to the #info-box div means that the mouse doesn't think it has left the canvas.

const canvas = document.querySelector("canvas");
const infoBox = document.querySelector("#info-box");
const mouseOffset = 2;

canvas.addEventListener("mousemove", evt => {
  evt.preventDefault()
  infoBox.style.display = "block"
  infoBox.style.position = "absolute"
  infoBox.style.top = evt.clientY + mouseOffset + "px" // add an offset here
  infoBox.style.left = evt.clientX + mouseOffset + "px" // and here
  console.log("moved")
})
canvas.addEventListener("mouseout", evt => {
  evt.preventDefault()
  infoBox.style.display = "none"
  console.log("exit")
}, false)
canvas {
  border-width: 0px;
  border-color: #212121;
  background-color: blue;
}
<canvas></canvas>
<div id="info-box" style="display: none;">
  <p>Hello</p>
</div>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文