HTML Screen colorDepth प्रॉपर्टी इमेज दिखाने के लिए रंग पैलेट की थोड़ी गहराई लौटाती है (बिट्स प्रति पिक्सेल में)।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
screen.colorDepth
उदाहरण
आइए हम HTML Screen 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>
आउटपुट
“रंग की गहराई दिखाएं . पर क्लिक करें स्क्रीन की रंग गहराई प्रदर्शित करने के लिए बटन।