参考这个问题
当 mouseenter 在每个项目上时,其覆盖消失,当 mouseleave - 覆盖显示。
当我有更多物品并随机快速悬停在它们上时,它们不会恢复到以前的状态。这很烦人:/
这是为什么?
$('.item').mouseenter(function () {
var $this = $(this);
setTimeout(function () {
$this.find('.item-overlay').css('z-index', '-1');
}, 300);
}).mouseleave(function () {
$(this).find('.item-overlay').css('z-index', '1');
});