当通知悬停时,我希望它使不透明度变为半透明并能够像在此通知插件 Pines Notify 中一样单击它
我尝试使用pointer-events:none
,但随后它禁用了 DOM 元素,因此 jQuery 无法处理此元素。我需要 jQuery 在悬停和悬停时执行代码。怎么做到呢 ?
当通知悬停时,我希望它使不透明度变为半透明并能够像在此通知插件 Pines Notify 中一样单击它
我尝试使用pointer-events:none
,但随后它禁用了 DOM 元素,因此 jQuery 无法处理此元素。我需要 jQuery 在悬停和悬停时执行代码。怎么做到呢 ?
为了能够点击一个 div 使用以下
$('#front-div').click(function (e) {
$(this).hide();
$(document.elementFromPoint(e.clientX, e.clientY)).trigger("click");
$(this).show();
});
$(".tobeclicked").click(function(){
$("#result").append("clicked<br />");
});
结合将:hover
选择器应用于父 div 和pointer-events: none
子 div 的指令。
https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events
<div class="container">
<div class="clickthrough">Mouseover</div>
<button onClick="alert('click!');">Click me</button>
</div>
.container {
position: relative;
}
.clickthrough {
position: absolute;
}
.container:hover .clickthrough {
opacity: 0.25;
pointer-events: none;
}
就是这样:
$(".above").click(function(e) {
// Hide the element so we can reach the element below.
$(this).hide(0);
// Fetch the underlying element.
var below = $(document.elementFromPoint(e.clientX, e.clientY));
// Trigger a click on the underlying element at the earliest convenience.
setTimeout(function() {
below.trigger("click");
});
// Display the element again.
$(this).show(0);
});
$(".below").click(function() { alert("Below clicked!"); });
该setTimeout
块使最顶层的元素在底层元素的点击事件之前重新出现。
演示:http: //jsfiddle.net/t86aV/
如果使用具有高 z-index 的内部 DIV 怎么办?例如:
<style>
.sub {
position: relative;
background: #99f;
width: 100px;
height: 100px;
}
.top {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 2;
}
.opacityLayer {
position: absolute;
background: #fff;
width: 100px;
height: 100px;
opacity: 0.5;
left: 30px;
top: 30px;
}
</style>
<a href="#"><div class="sub"><div class="top"></div></div></a>
<div class="opacityLayer"></div>