Conocer los datos relacionados con la pantalla |
Post Reply |
Author | |
Programador
Expert@ Joined: 09 Mayo 2009 Location: San Pedro Alc. Status: Offline Points: 54 |
Post Options
Thanks(0)
Posted: 18 Enero 2011 at 12:02pm |
Conocer los datos relacionados con la pantalla <html>
<body> <script language="javascript"> document.write("Resolución de pantalla: "); document.write(screen.width + "*" + screen.height); document.write("<br>"); document.write("Area visible disponible: "); document.write(screen.availWidth + "*" + screen.availHeight); document.write("<br>"); document.write("Resolución de color: "); document.write(screen.colorDepth); document.write(" bits<br>"); </script> </body> </html> |
|
Sponsored Links | |
Post Reply | |
Tweet |
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You can vote in polls in this forum |