將十六進位制顏色值轉換為RGB顏色值程式碼例項

antzone發表於2017-04-01

本章節分享一段程式碼例項它能夠實現將十六進位制顏色值轉換為RGB顏色值程式碼例項。

如果從RGB顏色值轉換為十六進位制顏色值可以參閱jQuery如何將獲取的顏色值轉換為十六進位制形式一章節。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
*{
  margin:0;
  padding:0;
  font-family:'Microsoft yahei'
}
.replace{
  width:400px;
  height:210px;
  margin:0 auto;
  padding-top:40px;
}
.title{
  text-align:center;
  display:block
}
form{
  width:200px;
  margin:30px auto;
}
input{outline:none;}
input[type="button"]{
  cursor:pointer;
}
</style>
<script>
function hexToR(h){
  return parseInt((cutHex(h)).substring(0, 2), 16)
}
function hexToG(h) {
  return parseInt((cutHex(h)).substring(2, 4), 16)
}
function hexToB(h) {
  return parseInt((cutHex(h)).substring(4, 6), 16)
}
function cutHex(h) {
  return h.charAt(0) == "#" ? h.substring(1, 7) : h
}
function setBgColorById(id, sColor) {
  var elems;
  if (document.getElementById) {
    if (elems = document.getElementById(id)) {
      if (elems.style) elems.style.backgroundColor = sColor;
    }
  }
}
window.onload=function(){
  var obt=document.getElementById("bt");
  obt.onclick=function(){
    setBgColorById('colorSample',this.form.hex.value);
    this.form.r.value=hexToR(this.form.hex.value);
    this.form.g.value=hexToG(this.form.hex.value);
    this.form.b.value=hexToB(this.form.hex.value);
  }
}
</script>
</head>
<body>
  <div class="replace"> 
  <span class="title">javascript原生16進位制顏色值轉RGB值</span>
  <form name="rgb">
    <input value="ffffff" maxlength="7" size="16" name="hex" />
    <input id="bt" value="轉換" type="button" name="btn"/><br /><br />
    R:<input style="width:30px" size="3" name="r" />
    G:<input style="width:30px" size="3" name="g" />
    B:<input style="width:30px" size="3" name="b" />
  </form>
  </div>
</body>
</html>


相關文章