I need animate background with jQuery's animate() from rgba(255,255,255,0.5) to rgba(255,255,255,0.9) without using jquery.color plugin & changing of CSS opacity.
The background color is always the same (white), I need animate only rgba's alpha.
Any suggests?
| |||
|
feedback
|
|
The only way is to use css opacity. In fact jQuery's animate() uses it too. | |||||||||
feedback
|
|
Something like this for example? | |||
|
feedback
|
|
You can't do it with jQuery's animate. I made a small little animation library for you just for animating background alpha. I doubt it's as robust as jQuery, but I tried to make it pretty flexible and fast. I didn't document it at all though: http://jsfiddle.net/Paulpro/3nX2g/ I hope it comes in handy at least just as an example as to how to do it, so you can make your own. Feel free to edit it any way you want. You can do it right in jsfiddle, and hit update to save it. | |||
|
feedback
|