HTML | Propiedad de profundidad de color de pantalla

La propiedad Screen colorDepth se usa para devolver la profundidad de bits de la paleta de colores para mostrar imágenes, en bits por píxel.
Los valores posibles son: 

  • 1 bit por píxel
  • 4 bits por píxel
  • 8 bits por píxel
  • 15 bits por píxel
  • 16 bits por píxel
  • 24 bits por píxel
  • 32 bits por píxel
  • 48 bits por píxel

Sintaxis:  

screen.colorDepth

Valor de retorno: un número que representa la profundidad de bits de la paleta de colores para mostrar imágenes, en bits por píxel.

El siguiente programa ilustra la propiedad ColorDepth de la pantalla:

Obtener el ancho de la pantalla del usuario.  

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
      Screen colorDepth property in HTML
    </title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Screen colorDepth property</h2>
 
     
 
<p>
      or returning the color depth, double
      click the "Colour Depth" button:
    </p>
 
 
 
    <button ondblclick="color_depth()">
      Color Depth
    </button>
 
    <p id="depth"></p>
 
 
 
    <script>
        function color_depth() {
 
            var c =
                "Color Depth in bits per pixel : "
                            + screen.colorDepth;
            document.getElementById("depth").innerHTML = c;
 
        }
    </script>
 
</body>
 
</html>

Producción:  

Después de hacer clic en el botón 

Navegadores compatibles: El navegador compatible con HTML| Las propiedades de profundidad del color de la pantalla se enumeran a continuación: 

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ó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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *