我想从某些< color>获取RGBA值CSS数据类型值。
该函数应接受描述某种颜色的字符串,并返回带有红色,绿色,蓝色和alpha值的对象。
例如:
parseColor('red') -> { red: 255, green: 0, blue: 0, alpha: 1 }
parseColor('#f00') -> { red: 255, green: 0, blue: 0, alpha: 1 }
parseColor('rgb(255,0,0)') -> { red: 255, green: 0, blue: 0, alpha: 1 }
parseColor('hsla(0,100%,50%,0.1)') -> { red: 255, green: 0, blue: 0, alpha: 0.1 }
parseColor('transparent') -> { red: any_is_ok, green: any_is_ok, blue: any_is_ok, alpha: 0 }
所以,我尝试了这样的代码:
function parseColor(color) {
var x = document.createElement('div');
document.body.appendChild(x);
var color, rgba;
var red = 0, green = 0, blue = 0, alpha = 0;
try {
x.style = 'color: ' + color + '!important';
color = window.getComputedStyle(x).color
rgba = color.match(/rgba?\((.*)\)/)[1].split(',').map(Number);
red = rgba[0];
green = rgba[1];
blue = rgba[2];
alpha = '3' in rgba ? rgba[3] : 1;
} catch (e) {
}
x.parentNode.removeChild(x);
return {'red': red, 'green': green, 'blue': blue, 'alpha': alpha};
}
适用于Firefox,IE和Chrome。
但是我想知道window.getComputedStyle(x).color
会返回什么?
此功能始终会以rgb()
或rgba()
格式返回颜色吗?
规范说什么?
并且,有没有其他方法可以实现parseColor
函数?
答案 0 :(得分:0)
parseColor
函数通过创建虚拟元素并为其设置颜色来工作。因此它可以在rgba()或rgb()中获得颜色(它取决于color
是什么参数)
但结果将始终在rgba()中,因为
alpha = '3' in rgba ? rgba[3] : 1;
这意味着如果没有alpha(a),它将设置为1