時間差で処理を行うサンプルです。
サンプルソース
例)2秒後にクラス'abc'を適用する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ //2秒後に背景色を変える $('#d1').delay(2000).queue(function(){ $(this).addClass('abc').dequeue(); }); }); }); </script> <style> .abc{ background-color:#e0e0e0; } </style> </head> <body> <div id="d1">hoge</div> <input type="button" id="btn1" value="ボタン"> </body> </html> |
実行サンプル
ボタンを押すとhogeの部分が2秒後に背景色が灰色になります。
hoge
解説
- delayの引数に遅らせる時間をミリ秒単位で指定します。
例)2秒 → 2000