我試圖在鼠標懸停它時將覆蓋圖添加到div。雖然它起作用,但在我將鼠標移動到div內時,覆蓋層會一直閃爍。 我該如何預防?爲什麼元素疊加閃爍?
HTML:
<div id="d4" class="dmc_block" style="width:60%; background:#eee; z-index:1">
<div style="padding:20px;">
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. </p>
</div>
</div>
JS:
$('body').on('mouseenter','.dmc_block',function(){
var o = $(this).offset();
var h = $(this).height();
var w = $(this).width();
$('<div>').addClass('hover').css({width:w,height:h,left:o.left,top:o.top,position:'absolute',zIndex:2}).insertAfter(this);
}).on('mouseleave','.dmc_block',function(){
$('.hover').remove();
});
$('body').on('mouseenter','.hover',function(){return false;});
小提琴:http://jsfiddle.net/T9Lhw/
您能否在此添加相關代碼?另外'
改爲使用':hover'僞類。 – Amareswar
下次將代碼添加到問題請http://meta.stackexchange.com/q/118392/186879 –