How can I animate the opacity of the background of a div?

[亡魂溺海] 提交于 2019-12-29 07:33:11

问题


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!


回答1:


First of all you need to set the property correctly

$('#test').animate({ 'background-color': 'rgba(0, 0, 0, 0.7)' },1000);

then you need to include jquery-ui to animate colours.

http://jsfiddle.net/7twXW/11/

You can also use css transitions to animate background colours

#test {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition:background-color 1s;
    -moz-transition:background-color 1s;
    transition:background-color 1s;
}

http://jsfiddle.net/7twXW/13/




回答2:


When using animate function don't use background-color but backgroundColor instead. So here is the working code :

$('#test').animate({ backgroundColor: "rgba(0,0,0,0.7)" });


来源:https://stackoverflow.com/questions/16254943/how-can-i-animate-the-opacity-of-the-background-of-a-div

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!