> 웹 프론트엔드 > JS 튜토리얼 > JavaScript에서 스크롤바 위치를 얻는 방법은 무엇입니까?

JavaScript에서 스크롤바 위치를 얻는 방법은 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-14 16:30:02
원래의
219명이 탐색했습니다.

How to Get the Scrollbar Position in JavaScript?

JavaScript로 스크롤바 위치 가져오기

웹페이지에서 현재 보기 위치를 확인하려면 JavaScript를 사용하여 스크롤바 위치를 확인하면 됩니다. 이 가이드에서는 이를 달성하는 방법을 보여줍니다.

스크롤 막대 위치를 얻으려면 element.scrollTop 및 element.scrollLeft 속성을 활용할 수 있습니다. 이러한 속성은 각각 스크롤된 요소 요소의 수직 및 수평 오프셋을 반환합니다. 전체 페이지에 관심이 있는 경우 요소를 document.body로 설정할 수 있습니다.

백분율을 결정하려면 오프셋 값을 element.offsetHeight 및 element.offsetWidth와 비교할 수 있습니다. 다시 한번 강조하지만, 요소는 문서 본문이 될 수 있습니다.

다음은 이러한 속성의 사용법을 보여주는 예제 코드 조각입니다.

// Get the vertical scroll position of the document
const verticalScrollPos = document.body.scrollTop;

// Get the horizontal scroll position of the document
const horizontalScrollPos = document.body.scrollLeft;

// Get the height and width of the document
const documentHeight = document.body.offsetHeight;
const documentWidth = document.body.offsetWidth;

// Calculate the percentage of the vertical scroll position
const verticalScrollPercentage = (verticalScrollPos / documentHeight) * 100;

// Calculate the percentage of the horizontal scroll position
const horizontalScrollPercentage = (horizontalScrollPos / documentWidth) * 100;
로그인 후 복사

위 내용은 JavaScript에서 스크롤바 위치를 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿