以下setTimeout()
とclearTimeout()
組み合わせて使用できますjQuery.data
。
$(window).resize(function() {
clearTimeout($.data(this, 'resizeTimer'));
$.data(this, 'resizeTimer', setTimeout(function() {
//do something
alert("Haven't resized in 200ms!");
}, 200));
});
更新
jQueryのデフォルトの(&)-event-handlerを拡張する拡張機能を作成しました。イベントが特定の間隔でトリガーされなかった場合、1つ以上のイベントのイベントハンドラー関数を選択した要素にアタッチします。これは、サイズ変更イベントなど、遅延の後にのみコールバックを起動する場合に役立ちます。
https://github.com/yckart/jquery.unevent.json
bind
;(function ($) {
var methods = { on: $.fn.on, bind: $.fn.bind };
$.each(methods, function(k){
$.fn[k] = function () {
var args = [].slice.call(arguments),
delay = args.pop(),
fn = args.pop(),
timer;
args.push(function () {
var self = this,
arg = arguments;
clearTimeout(timer);
timer = setTimeout(function(){
fn.apply(self, [].slice.call(arg));
}, delay);
});
return methods[k].apply(this, isNaN(delay) ? arguments : args);
};
});
}(jQuery));
ラストとして追加のパラメーターを渡すことができることを除いて、他のハンドラーon
またはbind
-eventハンドラーと同じように使用します。
$(window).on('resize', function(e) {
console.log(e.type + '-event was 200ms not triggered');
}, 200);
http://jsfiddle.net/ARTsinn/EqqHx/