이 튜토리얼에서는 페이지 하단이 사용자에게 표시되는지 확인합니다. window의 height과 scroll창의 높이를 사용하여 이를 달성할 수 있습니다. 이 코드를 작성하려면 다음과 같은 JavaScript의 세 가지 방법을 알아야 합니다.
scrollY - 창의 읽기 전용 속성이며 문서의 세로 스크롤에 필요한 픽셀 수를 반환합니다.
window.scrollY
scrollHeight -HTML DOM 요소이며 창의 읽기 전용 속성입니다. 보이지 않는 콘텐츠를 포함하여 요소 콘텐츠의 높이를 반환합니다.
element.scrollHeight
clientHeight - 패딩을 포함하여 요소의 시각적 높이를 픽셀 단위로 반환하지만 테두리, 스크롤 막대 또는 여백은 반환하지 않는 읽기 전용 속성이기도 합니다.
element.clientHeight window.clientHeight
Note - 위의 세 가지 방법 모두 요소의 값을 픽셀 단위로 측정합니다.
다음은 페이지 하단에 보이는 경우 확인할 조건의 구문입니다.
document.documentElement.clientHeight + window.scrollY >=(document.documentElement.scrollHeight ||document.documentElement.clientHeight);
위 조건이 맞다면 페이지 하단이 보입니다.
clientHeight 및 scrollY가 scrollHeight 또는 clientHeight보다 크거나 같은지 확인합니다. 이 조건이 true이면 페이지 하단이 표시됩니다. 따라서 조건이 충족되면 true를 반환하는 함수를 정의합니다.
documentElement>의
clientHeight속성을 사용하여 아래 프로그램에서는 페이지 하단이 보이는지 확인합니다. documentElement의 clientHeight 속성을 사용하여 구문 섹션에 정의된 조건을 확인합니다.
<!DOCTYPE html> <html> <head> <title>Example - Bottom Visible JavaScript</title> </head> <body> <div style="margin-bottom:100px;"> <h3>Checking if bottom of page is visible</h3> <p id = "bottom"> Is bottom of the Page visible?<br></p> </div> <div> You reached to the bottom of the page.</div> <script> const bottomVisible = () => document.documentElement.clientHeight + window.scrollY >= (document.documentElement.scrollHeight || document.documentElement.clientHeight); console.log(bottomVisible()); document.getElementById("bottom").innerHTML += bottomVisible() </script> </body> </html>
위 코드에서는 두 값을 비교합니다. 하나는 클라이언트 높이와 스크롤Y의 합이고, 다른 하나는 스크롤 높이와 클라이언트 높이의 OR 연산입니다. 클라이언트 높이와 scrollY의 합이 스크롤 높이와 클라이언트 높이의 OR 연산보다 크거나 같으면 결과 값은 true가 되어 페이지 하단이 표시됨을 나타냅니다.
windowinterface의
clientHeight속성을 사용하여 아래 프로그램에서는 페이지 하단이 보이는지 여부를 확인합니다. window 인터페이스의 clientHeight 속성을 사용하여 구문 섹션에 정의된 조건을 확인합니다.
<!DOCTYPE html> <html> <head> <title>Example - Bottom Visible JavaScript</title> </head> <body> <div style="margin-bottom:100px;"> <h3>Checking if bottom of page is visible</h3> <p id = "bottom"> Is bottom of the Page visible?<br></p> </div> <div> You reached to the bottom of the page.</div> <script> const bottomVisible = () => window.innerHeight + window.scrollY >=(document.documentElement.scrollHeight || window.innerHeight); console.log(bottomVisible()); document.getElementById("bottom").innerHTML += bottomVisible() </script> </body> </html>
페이지 하단이 보이지 않습니다
아래 프로그램에서는 페이지 하단이 보이지 않도록 div의 하단 여백을 높게 설정했습니다.
rreee위 내용은 JavaScript를 사용하여 페이지 하단이 표시되면 true를 반환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!