css颜色判断深浅颜色人工智能

核能气质少年 提交于 2019-12-17 22:44:24
/ 计算是不是灰度 阈值越高 越亮 true 暗色 false 亮色
    checkGray(color){
       let r =parseInt(color.substring(1,3),16)* 0.299
       let g =parseInt(color.substring(3,5),16)* 0.587 
       let b =parseInt(color.substring(5,7),16)* 0.114
       let gray = r+g+b
       console.log(color.substring(1,3)+"|"+color.substring(3,5)+"|"+color.substring(5,7))
       console.log(parseInt(color.substring(1,3),16)+"|"+parseInt(color.substring(3,5),16)+"|"+parseInt(color.substring(5,7),16))
       console.log(gray)
       if(gray>100){
         return true
       }else{
         return false
       }
    }
// 获取颜色样式
    getColorStyle(color){
        let styleString  = `width: 80px;height: 20px;margin: 0 auto;background-color:${color};`
        if(!this.checkGray(color)){
          styleString+="color:#FFF"
        }
        return styleString
    },

该方法对16进制颜色进行判断可判断出颜色是深色还是浅色并给予正确的文字显示避免文字被颜色遮盖的情况 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!