amorfati0310 / TipBooks

Tip Books
1 stars 0 forks source link

[scroll-behavior: smooth style] #1

Open amorfati0310 opened 4 years ago

amorfati0310 commented 4 years ago
 document.querySelector('html').style = 'scroll-behavior: smooth;';

스크롤에 반응하는 LazyLoad같은 부분이 있다면, 스크롤 위치 변경 시 이렇게 훑고 지나가게 만드시면 효율이 떨어진다.

배움

 document.querySelector('html').style = 'scroll-behavior: smooth;'; 

이 부분이 chrome말고는 제대로 동작하지 않음
javascript로 스크롤 메소드를 제어할 때 많은 인터렉션, LazyLoad등 불러일으키지는 않는지 확인 해보기 !

Question