Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何熟悉jQuery Bounce的人?
有谁知道如何让某些东西反弹,然后延迟,然后让它再次反弹?然后这将循环。
您可以在元素上将属性 data-loop 设置为 1,这样它只会循环一次。
<img class="bounce" data-loop="1" src="./demo/ball.svg" alt="Bouncing Ball" />
然后你可以在 setInterval 中调用bounce 函数,如下所示。希望这就是你要找的。
setInterval(bounce, 5000); function bounce() { $('.bounce').bounce(); }