En Web API hay una interfaz DOMRect que tiene una propiedad fromRect() que crea un objeto DOMRectReadOnly que tiene la ubicación y las dimensiones dadas.
Sintaxis:
var domRect = DOMRectReadOnly.fromRect(DOMRect object)
Valor devuelto:
It returns an instance of DOMRect
Ejemplo: Uso de fromRect.
html
<!DOCTYPE html> <html> <head> <title>DOMRect fromRect property</title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOMRect fromRect property</h2> <button onclick="getDOMRect ();"> Get fromRect </button> <p id='DOMRect'></p> </center> </body> <script type="text/javascript"> function getDOMRect() { var myDOMRect = new DOMRect(0, 0, -100, 100); var domRect = DOMRectReadOnly.fromRect(myDOMRect); console.log(domRect); } </script> </html>
Producción:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Google cromo 61
- Borde 79
- Safari 10.1
- firefox 69
- Ópera 48