codecamp

Screen colorDepth 属性

Screen colorDepth 属性

Screen 对象参考手册 Screen 对象

定义和用法

colorDepth 属性返回目标设备或缓冲器上的调色板的比特深度。

语法

screen.colorDepth


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 colorDepth 属性


实例s

实例 1

返回调色板的位深度:

<script>

document.write("颜色深度: " + screen.colorDepth);

</script>

以上实例输出结果:

document.write("颜色深度: " + screen.colorDepth);

尝试一下 »

实例 2

在8比特屏显示交替的背景颜色:

if (screen.colorDepth<=8)
    //为8位屏幕的简单的蓝色背景色
    document.body.style.background="#0000FF"
else
    //为现代屏幕的华丽的蓝色背景色
    document.body.style.background="#87CEFA"

尝试一下 »


实例

更多实例

本例包含了所有screen属性


Screen 对象参考手册 Screen 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }