css过渡不透明度的背景颜色

时间:2013-08-21 09:08:04

标签: html css css3 css-transitions

寻找线索,如何在过渡时使用背景颜色的不透明度?

我正在使用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转换?

1 个答案:

答案 0 :(得分:20)

事实上,opacityrgba()完全不同。

由于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