목록html+css+js (21)
영원히 흘러가는 강
스크롤시에 맨위로 올리기 버트(천천히)
html+css+js 바닐라 자바스크립트로만 구현해본 코드 수 많은 글과 컨텐츠가 존재할때에 맨위로 올라가기 버튼이 필요할텐데 이를 위해 구현 배운점 : 1. document.documentElement : documentElement 속성은 문서의 documentElement를 Element 객체로 반환합니다. HTML 문서의 경우 반환 된 객체는 요소입니다. 2. document.documentElement.scrollHeight, document.documentElement.offsetHeight 크로스 브라우징에서의 해결점 높이 구할때! let scrollHeight = Math.max( document.body.scrollHeight, document.documentElement.scrollHe..
html+css+js/JavaScript
2021. 3. 9. 17:07