Scroll Stop 이벤트 확장 함수

Chris·2019년 8월 13일
0

window 네이티브 이벤트에는 scroll stop 이벤트가 없다.
아래와 같은 코드를 추가하면 scrollStopped 확장이벤트를 사용할 수 있다.

$.fn.scrollStopped = function(callback) {
	var _this = this, $this = $(_this);
	$this.scroll(function(event) {
		clearTimeout($this.data('scrollTimeout'));
		$this.data('scrollTimeout', setTimeout(callback.bind(_this), 250, event));
	});
};
profile
올드보이 코더

0개의 댓글