16 燈光顏色值轉RGB
*{margin:0;padding:0;font-family:'微軟雅黑'}
.replace{寬度:400px;高度:210px;邊距:0 auto;padding-top:40px;}
.title{文字對齊:居中;顯示:區塊}
表單{寬度:200px;邊距:30px auto;}
輸入{大綱:無;}
輸入[type="按鈕"]{遊標:指針;}
樣式>
函數 hexToR(h) {
return parseInt((cutHex(h)).substring(0, 2), 16)
}
函數 hexToG(h) {
return parseInt((cutHex(h)).substring(2, 4), 16)
}
函數 hexToB(h) {
return parseInt((cutHex(h)).substring(4, 6), 16)
}
函數 cutHex(h) {
返回 h.charAt(0) == "#" ? h.substring(1, 7) : h
}
函數 setBgColorById(id, sColor) {
var elems;
if (document.getElementById) {
if (elems = document.getElementById(id)) {
if (elems.style) elems.style.backgroundColor = sColor;
}
}
}
腳本>
頭>
JavaScript 16 浴顏色值轉 RGB 值
>
R:
G:
B: