Lodash throttle, debounce

Jmnote (토론 | 기여)님의 2018년 6월 24일 (일) 17:20 판 (새 문서: ==개요== ;Lodash throttle, debounce ;Lodash 스로틀, 디바운스 <source lang='console'> <b>Mousemove Event</b> <br>Nothing <input type='text' id='output1' disabled> <br>Thrott...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

Lodash throttle, debounce
Lodash 스로틀, 디바운스
<b>Mousemove Event</b>
<br>Nothing <input type='text' id='output1' disabled>
<br>Throttled <input type='text' id='output2' disabled>
<br>Debounced <input type='text' id='output3' disabled>

<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js'></script>
<script>
$(window).mousemove( function(e) {
	$('#output1').val( e.clientX + ', ' + e.clientY )
})
$(window).mousemove( _.throttle( function(e) {
	$('#output2').val( e.clientX + ', ' + e.clientY )
}, 500))
$(window).mousemove( _.debounce( function(e) {
	$('#output3').val( e.clientX + ', ' + e.clientY )
}, 500))
</script>

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}