gpt4 book ai didi

html - 我怎样才能使指针事件通过元素而不禁用它们?

转载 作者:太空宇宙 更新时间:2023-11-04 07:34:19 25 4
gpt4 key购买 nike

所以我有一个完整的列表项,我希望它是可点击的,但其中也有一些链接也需要是可点击的。原来你不能嵌套 <a>标签,所以我改为制作列表项和 <a> sibling ,并将它们定位为重叠。

为了使列表的链接起作用,我必须禁用指针事件,以便它传递到下面的链接。然后我必须在容器内的每个容器上重新启用指针事件,因为当它们的父对象关闭时它们将被禁用。

现在的问题是,当您将鼠标悬停在列表中的链接上时,将停止触发背景悬停。

我希望当您将鼠标悬停在容器内的链接上时,显示链接悬停(并且 href 显示在底部),但下面的链接仍显示为悬停状态。

这是示例,请注意当您将鼠标悬停在框内的链接上时,框会停止悬停。

#listlink {
height: 100px; width: 100px; top:0; left:0;
position: absolute;

background: rgba(255,0,0,0.4);
}

#listlink:hover { background: rgba(255,0,0,0.8);}

#listitem {
height: 100px; width: 100px; top:0; left:0;
position: absolute;

z-index: 10;
pointer-events: none;
}

#childlink {
background: rgba(0,0,255,0.4);
pointer-events: auto;
}
#childlink:hover { background: rgba(0,0,255,0.8);}
<a id="listlink" href="#listlink"></a>
<div id="listitem">
Text <a id="childlink" href="#childlink">top link</a> text
</div>

最佳答案

为了实现所需的行为,您可以将整个容器放置在具有固定宽度高度relative 容器中,如图所示。并将 hover 效果应用于 #liSTLink

.container {
position: relative;
height: 100px;
width: 100px;
background: rgba(255, 0, 0, 0.4);
}
.container:hover {
background: rgba(255, 0, 0, 0.8);
}
#listlink {
/* height: 100px;
width: 100px;*/
top: 0;
bottom:0;
left: 0;
right:0;
position: absolute;
/*background: rgba(255, 0, 0, 0.4);*/
}
/*
#listlink:hover {
background: rgba(255, 0, 0, 0.8);
}*/

#listitem {
/* height: 100px;
width: 100px;*/
top: 0;
bottom:0;
left: 0;
right:0;
position: absolute;
z-index: 10;
pointer-events: none;
}

#childlink {
background: rgba(0, 0, 255, 0.4);
pointer-events: auto;
}

#childlink:hover {
background: rgba(0, 0, 255, 0.8);
}
<div class='container'>
<a id="listlink" href="#listlink"></a>
<div id="listitem">
Text <a id="childlink" href="#childlink">top link</a> text
</div>
</div>

关于html - 我怎样才能使指针事件通过元素而不禁用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49099357/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com