我目前正在使用下面的代碼,使一個div類.overlay
淡入當在一個div上徘徊時...
當你沒有徘徊在它上面時,它淡出。
如果你的指針在「x」時間內是靜止的,我怎麼能讓它淡出?如果鼠標不移動,你如何使覆蓋層淡出?
<script>
$(document).ready(function() {
$(".img-holder").on("mouseenter", function(){
$(".overlay").stop(true, true).fadeIn();
});
$(".img-holder").on("mouseleave", function(){
$(".overlay").stop(true, true).fadeOut();
});
});
</script>
固定的手段? –
是固定在主div內的任何地方.img holder – user2972047