- 1
- 2
- 3
- 4
- 5
- 6
var color2array = function(color){
return color.length==4?color.slice(1).split('').map(function(x){return parseInt(x,16)}).concat([255]):
color.length==7?[color.slice(1,3),color.slice(3,5),color.slice(5)].map(function(x){return parseInt(x,16)}).concat([255]):
~color.indexOf('rgba')?color.slice(5,-1).split(',').map(function(x){return +x}):
~color.indexOf('rgb')?color.slice(4,-1).split(',').map(function(x){return +x}).concat([255]):[0,0,0,255];
}
Один большой костыль преобразующий цвет из вида hex rgb rgba в массив значений от 1 до 255
guest 25.05.2011 22:39 # +3
guest 25.05.2011 22:42 # +10
Akira 26.05.2011 15:04 # 0
guest 26.05.2011 15:27 # +5
Akira 26.05.2011 16:07 # 0
art543484 26.05.2011 16:08 # −1
guest 26.05.2011 16:18 # +3
В кратких страдательных причастиях пишут одну "н". Запомни это, удод.
Akira 26.05.2011 16:33 # −2
guest 26.05.2011 16:35 # +2
Akira 26.05.2011 16:51 # −1
guest 26.05.2011 17:15 # +1
TheHamstertamer 26.05.2011 17:16 # −5
guest 26.05.2011 17:18 # +1
bugmenot 26.05.2011 17:36 # +2
Lure Of Chaos 26.05.2011 20:31 # +2
Vindicar 27.05.2011 17:05 # −1
guest8 08.04.2019 20:51 # −999