Interface DOMRect
bottom: number;
height: number;
left: number;
right: number;
top: number;
width: number;
x: number;
y: number;
toJSON(): any;
}
Hierarchy
- DOMRectReadOnly
- DOMRect (View Summary)
Properties
Readonlybottom
The bottom read-only property of the DOMRectReadOnly interface returns the bottom coordinate value of the DOMRect.
height
The height property of the DOMRect interface represents the height of the rectangle.
Readonlyleft
The left read-only property of the DOMRectReadOnly interface returns the left coordinate value of the DOMRect.
Readonlyright
The right read-only property of the DOMRectReadOnly interface returns the right coordinate value of the DOMRect.
Readonlytop
The top read-only property of the DOMRectReadOnly interface returns the top coordinate value of the DOMRect.
width
The width property of the DOMRect interface represents the width of the rectangle.
x
The x property of the DOMRect interface represents the x-coordinate of the rectangle, which is the horizontal distance between the viewport's left edge and the rectangle's origin.
y
The y property of the DOMRect interface represents the y-coordinate of the rectangle, which is the vertical distance between the viewport's top edge and the rectangle's origin.
A
DOMRectdescribes the size and position of a rectangle.MDN Reference