我正在淡入淡出背景:
// in:
$bg.css({'pointerEvents':'auto'}).show()
.stop(true).animate({ 'opacity': 0.90 }, animTime);
// out:
$bg.css({'pointerEvents':'none'}).stop(true)
.animate({ 'opacity': 0 }, animTime,function () { $bg.hide(); });
当我在它完成淡出之前开始淡入它时,就会出现问题;完整的事件将在淡入动画的一部分中触发并隐藏背景。
我想.stop(true)
没有清除完整的事件 - 有什么办法可以做到吗?