jQuery:试图让动画每3秒发生一次,但没有成功

jQuery: Trying to make animation happen every 3 seconds, not working?

本文关键字:一次 成功 动画 3秒 jQuery      更新时间:2023-09-26

JS:

$("#gifttwo").on('click', function() {
    setInterval(function() {
        $("#shuriken").removeClass("animated wobble").addClass("animated wobble");
    }, 3000);
});

shuriken是一个图像。只发生一次。。为什么不起作用?

最好使用toggleClass():

$("#gifttwo").on("click", function() {
  setInterval(function() {
    $("#shuriken").toggleClass("animated wobble");
  }, 3000);
});