HTML DOM bufferDepth 속성
정의와 사용법
bufferDepth 속성은 off-screen bitmap 버퍼에서 팔레트의 비트 깊이를 설정하거나 반환합니다.
문법
screen.bufferDepth=number
예제
<html> <body> <script type="text/javascript"> document.write("<p>Buffer Depth: ") document.write(screen.bufferDepth + "</p>") </script> </body> </html>