I have a div #test with a 0 opacity background, I want to animate it until reach the opacity of 0.7. But .animate doesn't seem to work with the css rgba.
My css is:
#test {
background-color: rgba(0, 0, 0, 0);
}
my html:
<div id="test">
<p>Some text</p>
<img src="http://davidrhysthomas.co.uk/img/dexter.png" />
</div>
and my jQuery:
$('#test').animate({ background-color: rgba(0, 0, 0, 0.7) },1000);
Here a jsFiddle: http://jsfiddle.net/malamine_kebe/7twXW/10/
thanks a lot for helping!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…