Detailed explanation of the getBoundingClientRect() method in js

Detailed explanation of the getBoundingClientRect() method in js

1. getBoundingClientRect() Analysis

The getBoundingClientRect() method returns the size of an element and its position relative to the viewport.

grammar

rectObject = object.getBoundingClientRect();

insert image description here

value

rectObject.top: the distance from the top of the element to the top of the window;
rectObject.right: the distance from the right side of the element to the left side of the window;
rectObject.bottom: the distance from the bottom of the element to the top of the window;
rectObject.left: the distance from the left side of the element to the left side of the window;
rectObject.width: is the width of the element itself rectObject.height is the height of the element itself

Cross-browser compatibility

If you need better cross-browser compatibility, use window.pageXOffset and window.pageYOffset instead of window.scrollX and window.scrollY. Scripts that do not have access to these properties can use the following code:

// For scrollX
(((t = document.documentElement) || (t = document.body.parentNode))
  && typeof t.scrollLeft == 'number' ? t : document.body).scrollLeft
// For scrollY
(((t = document.documentElement) || (t = document.body.parentNode))
  && typeof t.scrollTop == 'number' ? t : document.body).scrollTop

Example

// rect is a DOMRect object with four properties: left, top, right, bottom Note: DOMRect is the standard name for TextRectangle or ClientRect, they are the same.
var rect = obj.getBoundingClientRect();

This is the end of this article about the detailed case of the getBoundingClientRect() method in js. For more relevant content about getBoundingClientRect() in js, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • js getBoundingClientRect() to get the position of the page element
  • javascript quick method to get element position getBoundingClientRect()
  • JavaScript getBoundingClientRect() to get the position of the page element code [revised version]

<<:  MySQL free installation version (zip) installation and configuration detailed tutorial

>>:  How to reset Zabbix password (one-step)

Recommend

MySQL database operations and data types

Table of contents 1. Database Operation 1.1 Displ...

Make your website run fast

Does performance really matter? Performance is im...

Share some key interview questions about MySQL index

Preface An index is a data structure that sorts o...

select the best presets to create full compatibility with all browsersselect

We know that the properties of the select tag in e...

jenkins+gitlab+nginx deployment of front-end application

Table of contents Related dependency installation...

Detailed explanation and extension of ref and reactive in Vue3

Table of contents 1. Ref and reactive 1. reactive...

Introduction to the use of base link tag base

<br />When you click the link, the web page ...

Docker batch start and close all containers

In Docker Start all container commands docker sta...

Examples of using && and || operators in javascript

Table of contents Preface && Operator || ...

Improvement experience and sharing of 163 mailbox login box interactive design

I saw in the LOFTER competition that it was mentio...

Detailed explanation of monitoring NVIDIA GPU usage under Linux

When using TensorFlow for deep learning, insuffic...

Detailed explanation of the process of building an MQTT server using Docker

1. Pull the image docker pull registry.cn-hangzho...

How to use Zen coding in Dreamweaver

After I published my last article “Zen Coding: A Q...