requestAnimationFrame js 떨 림 방지 실현
1656 단어 전단
const hasNativePerformanceNow = typeof performance === 'object'
&& typeof performance.now === 'function';
const now = hasNativePerformanceNow
? () => performance.now()
: () => Date.now();
export function cancelTimeout(timeoutID) {
cancelAnimationFrame(timeoutID.id);
}
export function requestTimeout(callback, delay) {
const start = now();
function tick() {
if (now() - start >= delay) {
callback.call(null);
} else {
timeoutID.id = requestAnimationFrame(tick);
}
}
const timeoutID = {
id: requestAnimationFrame(tick),
};
return timeoutID;
}
index.jsx
const IS_SCROLLING_DEBOUNCE_INTERVAL = 2000;
class Home extends React.Component {
constructor(props) {
super(props);
this.onScrollVertical = this.onScrollVertical.bind(this);
this.resetIsScrolling = this.resetIsScrolling.bind(this);
}
onScrollVertical(event) {
if (this.resetIsScrollingTimeoutId) {
cancelTimeout(this.resetIsScrollingTimeoutId);
}
this.resetIsScrollingTimeoutId = requestTimeout(
this.resetIsScrolling,
IS_SCROLLING_DEBOUNCE_INTERVAL,
);
}
resetIsScrolling() {
this.resetIsScrollingTimeoutId = null;
console.log('handle debounce...');
}
render() {
return (
{
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10].map((item) => (
{item}
))
}
);
}
}
export default Home;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
전단 자동화 워 크 플 로 의 hooks예 를 들 어 우 리 는 git commt 전에 eslint 코드 검사, npm install 전에 프로젝트 의존 도 를 검사 하고 싶 습 니 다.전형 적 인 상황 에서 각종 도 구 는 특정한 동작 이 발생 할 때 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.