I can animate from transparent to color, but when I tell jquery to animate the backgroundColor: 'transparent' it just changes to white. Any idea how to fix this?
|
|
Transparent isn't really a color. So, you can't animate to it. You might be able to achieve the effect you're looking for by using a separate element for the background, and animating the opacity though. Example:HTML:
Script:
Kingjeffrey's comment points out that this answer is somewhat outdated - browsers do now support RGBA color values, so you can animate just the background. However, jQuery doesn't support this in core - you'll need a plugin. See also: jQuery + RGBA color animations |
|||||||
|
|
I wanted to do this and since I couldn't find it, I hacked it together. This is only for white, suit to your needs:
Usage:
|
|||
|
|
Not as clean because it fades the bg to white before making it transparent, but it's an option. |
|||||
|
|
I used the answer of Linus but ran into IE. Changed it about a bit to work in IE as well:
Usage is the same:
|
|||
|
|
|
You can use rgba(61, 31, 17, 0.5) color where 0.5 is the opacity. Then if you want transparent set the opacity to 0.0
|
|||
|
|
|
I changed Shog9's code a bit to fit my needs. It's sort of like the jQuery UI Highlight, only it does not fade into white. It's not perfect, but it works on most elements
|
|||
|
|
|
I used the function parameter to remove the style after the animation was done:
It worked great. |
|||
|
|
|
My solution was to animate to the colour seen by the user (ie. the colour of the parent element), and then set to the original colour (which may or may not be 'transparent') once the animation is finished
|
|||
|
|
|
Use jQuery Color plugin: https://github.com/jquery/jquery-color It will get your transparent as well as rgba animations working properly. |
|||
|
|
|
You have to chain it. For example, you can't do this:
or even
but you can do this:
|
||||
|
|
