PrefaceShare two methods to monitor whether an element is within the viewport 1. Position calculationUse the Element.getBoundingClientRect() method to return the position of the element relative to the viewport const isElementVisible = (el) => { const rect = el.getBoundingClientRect(); }; Get the width and height of the browser window const isElementVisible = (el) => { const rect = el.getBoundingClientRect(); const vWidth = window.innerWidth || document.documentElement.clientWidth; const vHeight = window.innerHeight || document.documentElement.clientHeight; }; Determine whether the element is within the viewport, as shown in the figure const isElementVisible = (el) => { const rect = el.getBoundingClientRect() const vWidth = window.innerWidth || document.documentElement.clientWidth const vHeight = window.innerHeight || document.documentElement.clientHeight if ( rect.right < 0 || rect.bottom < 0 || rect.left > vWidth || rect.top > vHeight ) { return false } return true } The getBoundingClientRect method will cause the browser to reflow and redraw, which consumes slightly more performance, but has better compatibility than Intersection Observer. 2. Intersection Observer
The Intersection Observer API provides a way to asynchronously detect changes in the intersection of a target element with an ancestor element or the viewport. The configured callback function is triggered when the target element intersects the viewport or other specified elements. // Get the elements to monitor const boxes = document.querySelectorAll('.box') // Create an observer and configure the callback function // Use the isIntersecting property to determine whether the element intersects with the viewport const observer = new IntersectionObserver((entries, observer) => { entries.forEach((entry) => { console.log( entry.target, entry.isIntersecting ? "visible" : "invisible" ); }); }) boxes.forEach((box) => { observer.observe(box); }); refer tohow-to-check-an-element-is-in-viewport-4bcl Intersection Observer API SummarizeThis concludes this article on how to use JS to check if an element is within the viewport. For more information about how to use JS to check if an element is within the viewport, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Detailed explanation of routing configuration in Linux system with multiple network cards
>>: Examples of the correct way to use AES_ENCRYPT() and AES_DECRYPT() to encrypt and decrypt MySQL
1. Postgres database backup in Docker Order: dock...
First look at the effect diagram: The complete co...
Problem Description I want to achieve the followi...
Table of contents 1. Introduction 2. Implementati...
Table of contents 1. v-on directive 1. Basic usag...
This article uses an example to describe the simp...
There are also two servers: Preparation: Set the ...
Table of contents 1. Introduction to the connecti...
Introduction to XHTML tags <br />Perhaps you...
illustrate: Using mysqldump –all-databases will e...
01. Compile options and kernel compilation The Li...
About the tree display of Vue, the project is use...
Nginx (engine x) is a high-performance HTTP and r...
The solution to the problem that Navicat cannot r...