convert HEX color to RGBA
2022年5月1日小于 1 分钟
convert HEX color to RGBA
Question
Suppose you write some CSS code, you need to set colors. You can choose hexadecimal notation #fff
or Functional notation rgba(255,255,255,1)
.
Can you write a function to convert hexadecimal notation to functional notation?
hexToRgb('#fff')
// 'rgba(255,255,255,1)'
- Alpha channel should have maximum 2 digits after decimal point, round up if needed.
- Don't forget to do input validation
Code
/**
* @param {string} hex
* @return {string}
*/
function hexToRgba(hex) {
// your code here
}