标签:16进制 转换 color result pre tor 进制 span hex
_hexToRgb (hex) { const result = /^#?([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; }
标签:16进制 转换 color result pre tor 进制 span hex
原文地址:https://www.cnblogs.com/Oldz/p/13186712.html