1 2 3 4 5 6 7 8 9 10 | var timer = false; $(window).resize(function() { if (timer !== false) { clearTimeout(timer); } timer = setTimeout(function() { console.log('resized'); // 処理 }, 200); }); |
1 2 3 4 5 6 7 8 9 10 | var timer = false; $(window).resize(function() { if (timer !== false) { clearTimeout(timer); } timer = setTimeout(function() { console.log('resized'); // 処理 }, 200); }); |
コメント