La propiedad Window screenLeft se usa para devolver la ‘x’ o la coordenada horizontal de una ventana en relación con una pantalla. Devuelve un número que representa la coordenada horizontal de una ventana relativa a una pantalla.
Sintaxis:
window.screenLeft
Valores devueltos: Devuelve un Número que representa la distancia horizontal de la ventana con respecto a la pantalla, en píxeles
El siguiente programa ilustra la propiedad screenLeft de la ventana:
Obtener la coordenada horizontal de una ventana relativa a una pantalla.
<!DOCTYPE html> <html> <head> <title> Window screenLeft Property in HTML </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Window screenLeft Property</h2> <p> For returning the X coordinates of a window relative to the screen, double click the "Check Screen Left" button: </p> <button ondblclick="coordinate()"> Check Screen Left </button> <script> function coordinate() { var x = window.open("", "myWindow"); x.document.write ("<p>Welcome to my Window"); x.document.write ("<br> ScreenLeft : " + x.screenLeft); } </script> </body> </html>
Producción:
Después de hacer clic en el botón
Navegadores compatibles: los navegadores compatibles con Window screenLeft Property se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA