웹페이지에서 현재 보기 위치를 확인하려면 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!