我有一个函数设置来连续循环动画,如下所示:
$(document).ready(function() {
function boxGlow() {
$("#not_bg").animate({opacity:0}, 1000);
$("#not_bg").animate({opacity:1}, 1000, boxGlow);
}
});
该片段按预期工作,但我正在寻找最有效的方法来取消外部 div 时的循环(例如#stopbutton
,出于测试目的)。因此,当用户单击 div 时#stopbutton
,该boxGlow()
功能将停止,并且不透明度重置为 0。非常感谢任何有关从何处开始的示例。