[esercizio] React Hooks 6
React Hooks 연습하기
6. useScroll
import React, { useState, useEffect } from "react";
const useScroll = () => {
const [state, setState] = useSTate({y: 0, x: 0})
const onScroll = () => {
setState({ y: window.scrollY, x: window.scrollX })
};
useEffect(()=>{
window.addEventListener('scroll', onScroll);
return () => window.removeEventListener('scroll', onScroll);
}, [])
return state;
}
const App1 =() =>{
const { y } = useScroll();
return(
<div style ={{height:"1000vh"}}>
<h1 style = {{ position : "fixed", color: y> 150 ? green : red}}>
Hello, Strangers!
</h1>
</div>
)
}
export default App1;
6. 결과물
import React, { useState, useEffect } from "react";
const useScroll = () => {
const [state, setState] = useSTate({y: 0, x: 0})
const onScroll = () => {
setState({ y: window.scrollY, x: window.scrollX })
};
useEffect(()=>{
window.addEventListener('scroll', onScroll);
return () => window.removeEventListener('scroll', onScroll);
}, [])
return state;
}
const App1 =() =>{
const { y } = useScroll();
return(
<div style ={{height:"1000vh"}}>
<h1 style = {{ position : "fixed", color: y> 150 ? green : red}}>
Hello, Strangers!
</h1>
</div>
)
}
export default App1;
Author And Source
이 문제에 관하여([esercizio] React Hooks 6), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yrkimyy/esercizio-React-Hooks-6저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)