RGB to hex and hex to RGB

前端 未结 30 2782
遥遥无期
遥遥无期 2020-11-21 06:56

How to convert colors in RGB format to hex format and vice versa?

For example, convert \'#0080C0\' to (0, 128, 192).

30条回答
  •  执笔经年
    2020-11-21 07:29

    This code accept #fff and #ffffff variants and opacity.

    function hex2rgb(hex, opacity) {
            var h=hex.replace('#', '');
            h =  h.match(new RegExp('(.{'+h.length/3+'})', 'g'));
    
            for(var i=0; i

提交回复
热议问题