Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 화면 colorDepth 속성

<시간/>

HTML 화면 colorDepth 속성은 이미지를 표시하기 위한 색상 팔레트의 비트 심도(픽셀당 비트 수)를 반환합니다.

구문

다음은 구문입니다 -

screen.colorDepth

예시

HTML 화면 colorDepth 속성의 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .show {
      font-size: 1.2rem;
      margin: 1rem auto;
      font-weight: bold;
      font-family: sans-serif;
   }
</style>
<body>
<h1>HTML screen colorDepth Property</h1>
<button class="btn" onclick="get()">Show color depth</button>
<div class="show"></div>
<script>
   function get() {
      document.querySelector(".show").innerHTML = "Color Depth is " + screen.colorDepth + " bits per pixel";
   }
</script>
</body>
</html>

출력

HTML 화면 colorDepth 속성

"색상 깊이 표시를 클릭합니다. ” 버튼을 눌러 화면의 색 농도를 표시합니다.

HTML 화면 colorDepth 속성