寻找线索,如何在过渡时使用背景颜色的不透明度?
我正在使用rgba()
功能,但转换不适用于悬停。
.bx{
background:rgba(255,0,0,0.5);
width:100px; height:100px;
position:relative;
transition: opacity .5s ease-out;
-moz-transition: opacity .5s ease-out;
-webkit-transition: opacity .5s ease-out;
-o-transition: opacity .5s ease-out;
}
.bx:hover{
background:rgba(255,0,0,1);
}
.t{
position:absolute;
bottom:0px;
}
HTML
<div class="bx"><div class="t">text</div></div>
任何想法,我如何使用.bx
转换?
答案 0 :(得分:20)
事实上,opacity
和rgba()
完全不同。
由于rgba()
属性使用background
作为背景颜色,因此您需要使用background
作为转换属性,如下所示:
.bx {
background: rgba(255,0,0,0.5);
width:100px; height:100px;
position: relative;
-webkit-transition: background .5s ease-out;
-moz-transition: background .5s ease-out;
-o-transition: background .5s ease-out;
transition: background .5s ease-out;
}
.bx:hover {
background: rgba(255,0,0,1);
}
<强> JSBin Demo 强>