JS色值#f97db3转换为16进制int
时间:2021-07-01 10:21:17
帮助过:47人阅读
= /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/
i.exec(hex);
return result ?
{
r: parseInt(result[1], 16
),
g: parseInt(result[2], 16
),
b: parseInt(result[3], 16
)
} : null;
}
JS色值#f97db3转换为16进制int
标签:16进制 转换 color result pre tor 进制 span hex