What would be the easiest way to transform
$('#my_element').css('backgroundColor')
to object like this:
{ r: red_value, g: green_value, b: blue_value, a: alpha_value }
?
|
What would be the easiest way to transform
to object like this:
?
| |||||||
feedback
|
Try it here http://jsbin.com/uhawa4 Edit :
or even simpler way, just aiming at numbers
| ||||
|
feedback
|
|
You would do something like:
Pretty simple :) | |||||||||||
feedback
|
|
Say you have the following CSS rule:
Then this is how you could get an RBGA object:
| ||||
|
feedback
|
|
Your first line will return something like rgb(xxx,xxx,xxx) by default and you can just parse it. Simplier solution would be https://www.adaptavist.com/display/jQuery/Colour+Library | |||
|
feedback
|
|
http://www.javascripter.net/faq/hextorgb.htm This script basically takes each color pair from your hexcolor code (for example #F0556A) and switches it to a integer using parseInt with base 16 . | |||
|
feedback
|