12 lines
326 B
PHP
12 lines
326 B
PHP
<script>
|
|
function hex2rgba_convert(hex,opacity){
|
|
hex = hex.replace('#','');
|
|
r = parseInt(hex.substring(0,2), 16);
|
|
g = parseInt(hex.substring(2,4), 16);
|
|
b = parseInt(hex.substring(4,6), 16);
|
|
|
|
result = 'rgba('+r+','+g+','+b+','+opacity/100+')';
|
|
return result;
|
|
}
|
|
</script>
|