$(window).scroll(function() {
clearTimeout($.data(this, 'scrollTimer'));
$.data(this, 'scrollTimer', setTimeout(function() {
// do something
console.log("Haven't scrolled in 250ms!");
}, 250));
});
更新
jQueryのデフォルトの-event-handlerを拡張する拡張機能をon
作成しました。1つ以上のイベントのイベントハンドラー関数を選択した要素にアタッチし、イベントが特定の間隔でトリガーされなかった場合はハンドラー関数を呼び出します。これは、サイズ変更イベントなど、遅延の後でのみコールバックを起動する場合に便利です。
github-repoの更新を確認することが重要です!
https://github.com/yckart/jquery.unevent.js
;(function ($) {
var on = $.fn.on, timer;
$.fn.on = function () {
var args = Array.apply(null, arguments);
var last = args[args.length - 1];
if (isNaN(last) || (last === 1 && args.pop())) return on.apply(this, args);
var delay = args.pop();
var fn = args.pop();
args.push(function () {
var self = this, params = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
fn.apply(self, params);
}, delay);
});
return on.apply(this, args);
};
}(this.jQuery || this.Zepto));
ラストとして追加のパラメーターを渡すことができることを除いて、他のハンドラーon
またはbind
-eventハンドラーと同じように使用します。
$(window).on('scroll', function(e) {
console.log(e.type + '-event was 250ms not triggered');
}, 250);
http://yckart.github.com/jquery.unevent.js/
(このデモはのresize
代わりに使用しますがscroll
、誰が気にしますか?!)