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.
5秒ごとに1秒間だけクラスを切り替えるにはどうすればよいですか?
これは私が望むアクションです。5秒ごとに1秒間実行する必要があります。
$('#donate').toggleClass('wiggle');
以下を使用してください
setInterval(function(){ // toggle the class every five second $('#donate').toggleClass('wiggle'); setTimeout(function(){ // toggle back after 1 second $('#donate').toggleClass('wiggle'); },1000); },5000);
デモ http://jsfiddle.net/joycse06/vqRqf/