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?

link|improve this question

65% accept rate
feedback

3 Answers

The only way is to use css opacity. In fact jQuery's animate() uses it too.

link|improve this answer
That won't affect just the background's opacity unfortunately – PaulP.R.O. Jul 19 '11 at 8:37
@Molecule, @PaulPRO: in this case I need to change opacity to 1 instead of 0.9, right? – Ken Jul 19 '11 at 8:38
@PaulPRO, I don't know ways to change just the background's opacity. However, it might be done with ugly hacks like adding extra div with same size, needed background, and positioned behind target block using absolute positioning and zIndex. – Molecular Man Jul 19 '11 at 8:43
@Ken, yes. And don't forget that if you want it to be crossbrowser you have to apply some tricks – Molecular Man Jul 19 '11 at 8:45
feedback

Something like this for example?

http://jsfiddle.net/YZKKp/13/

link|improve this answer
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.

link|improve this answer
In jsfiddle use rather 'fork' if you have your own account – Roko C. Buljan Jul 19 '11 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.