不計算元素的位置,然後發射自己的「事件」。當元素被另一個元素覆蓋時,有沒有辦法獲得一個mouseover事件?
original fiddle (can be fixed with z-index)
better fiddle (a situation where z-index can't work)
<div class='under'></div>
<div class='over'></div>
.over {
display:inline-block;
position:absolute;
height:100px;
width:100px;
background: rgba(0, 255, 0, .3);
}
.under {
display:inline-block;
position:absolute;
height:26px;
width:26px;
top:37px;
left:37px;
background:rgba(0, 0, 255, 1);
}
我想不,但我可以問你爲什麼使用它? –
只是要清楚,你是否想讓綠色在Y盤旋的同時成爲Y? –
A [hack](http://jsfiddle.net/GLCPV/1/)爲原始案例。雖然FF中的結果似乎閃爍,但其他所有瀏覽器都正常工作... – Teemu