이 글은 PHP 변수 범위(코드)의 사용법을 소개합니다. 필요한 친구들이 참고할 수 있기를 바랍니다.
throttle throttling
이벤트는 트리거된 후 한 번만 실행됩니다.응용 시나리오
마우스 이동과 같은 mousemove 이벤트가 발생하는 경우.
검색 등 키업 이벤트가 발생하는 상황.
스크롤 이벤트가 발생하는 경우, 예를 들어 마우스가 아래로 스크롤되었다가 멈추면 데이터 로드가 발생합니다.
coding
방법 1 흔들림 방지
// function resizehandler(fn, delay){ // clearTimeout(fn.timer); // fn.timer = setTimeout(() => { // fn(); // }, delay); // } // window.onresize = () => resizehandler(fn, 1000);
방법 2 폐쇄 흔들림 방지
function resizehandler(fn, delay){ let timer = null; return function() { const context = this; const args=arguments; clearTimeout(timer); timer = setTimeout(() => { fn.apply(context,args); }, delay); } } window.onresize = resizehandler(fn, 1000);# 🎜🎜#
debounce anti-shake 이벤트가 시작된 후 특정 이벤트 내에서 한 번 실행합니다.
애플리케이션 시나리오
창 변경은 한 번만 실행되는 크기 조정 이벤트를 트리거합니다. 전화번호 입력을 확인하려면 입력을 한 번만 멈추세요.coding
function resizehandler(fn, delay, duration) { let timer = null; let beginTime = +new Date(); return function() { const context = this; const args = arguments; const currentTime = +new Date(); timer && clearTimeout(timer); if ((currentTime - beginTime) >= duration) { fn.call(context, args); beginTime = currentTime; } else { timer = setTimeout(() => { fn.call(context, args) }, delay); } } } window.onresize = resizehandler(fn, 1000, 1000);
위 내용은 자바스크립트 기능 제한 및 흔들림 방지 애플리케이션 시나리오 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!