En Web API hay una interfaz DOMRect que tiene un derecho de propiedad que nos otorga el derecho del objeto DOMRect. Devuelve x + valor de coordenada de ancho o si el ancho es negativo, devuelve x .
Sintaxis:
var recX = DOMRect.right;
Tipo de devolución:
Double value
Ejemplo 1: cuando el ancho es positivo
<!DOCTYPE html> <html> <head> <title> DOMRect right property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOMRect right property</h2> <button onclick="getDOMRect ();"> Get right </button> <p id='DOMRect'></p> </center> </body> <script type="text/javascript"> function getDOMRect() { var myDOMRect = new DOMRect(0, 0, 100, 100); var recright = myDOMRect.right; document.getElementById( 'DOMRect').innerHTML = recright; } </script> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2: cuando el ancho es negativo
<!DOCTYPE html> <html> <head> <title> DOMRect right property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOMRect right property</h2> <button onclick="getDOMRect ();"> Get right </button> <p id='DOMRect'></p> </center> </body> <script type="text/javascript"> function getDOMRect() { var myDOMRect = new DOMRect(0, 0, -100, 100); var recright = myDOMRect.right; document.getElementById( 'DOMRect').innerHTML = recright; } </script> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad de derecho DOMRect se enumeran a continuación:
- Google Chrome
- Safari 10.1
- Firefox
- Ópera