我试图在悬停时用css过渡缩略图,这样在悬停时,背景渐变就会淡入。转换没有工作,但如果我简单地将其更改为rgba()值,它就可以工作。不支持渐变吗?我也尝试使用图像,它也不会过渡图像。

我知道这是可能的,因为在另一篇文章中有人做到了,但我不知道具体是怎么做到的。这里有一些CSS工作:

#container div a {
  -webkit-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  position: absolute;
  width: 200px;
  height: 150px;
  border: 1px #000 solid;
  margin: 30px;
  z-index: 2
}

#container div a:hover {
  background: -webkit-gradient(radial, 100 75, 100, 100 75, 0, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .4)))
}

当前回答

渐变过渡的部分解决方法是使用嵌入框阴影——你可以转换框阴影本身,也可以转换背景颜色——例如,如果你创建的嵌入框阴影与背景颜色相同,然后在背景颜色上使用过渡,它会产生一种错觉,即普通背景正在变为径向渐变

.button SPAN {
    padding: 10px 30px; 
    border: 1px solid ##009CC5;

    -moz-box-shadow: inset 0 0 20px 1px #00a7d1;
    -webkit-box-shadow: inset 0 0 20px 1px#00a7d1;
    box-shadow: inset 0 0 20px 1px #00a7d1; 

    background-color: #00a7d1;
    -webkit-transition: background-color 0.5s linear;
    -moz-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.button SPAN:hover {
    background-color: #00c5f7; 
}

其他回答

如上所述。渐变目前不支持CSS过渡。但在某些情况下,你可以通过将其中一种颜色设置为透明来解决这个问题,这样其他一些包装元素的背景色就会穿透,并进行过渡。

基于你的问题中的css代码,我已经尝试代码如下,它为我工作(运行代码片段),请自己尝试:

#container div a { display: inline-block; margin-top: 10%; padding: 1em 2em; font-size: 2em; color: #fff; font-family: arial, sans-serif; text-decoration: none; border-radius: 0.3em; position: relative; background-color: #ccc; background-image: linear-gradient(to top, #C0357E, #EE5840); -webkit-backface-visibility: hidden; z-index: 1; } #container div a:after { position: absolute; content: ''; top: 0; left: 0; width: 100%; height: 100%; border-radius: 0.3em; background-image: linear-gradient(to top, #6d8aa0, #343436); transition: opacity 0.5s ease-out; z-index: 2; opacity: 0; } #container div a:hover:after { opacity: 1; } #container div a span { position: relative; z-index: 3; } <div id="container"><div><a href="#"><span>Press Me</span></a></div></div>

基于你的问题中的css代码,我已经尝试代码如下,它为我工作,请自己尝试:

    #container div a {
  display: inline-block;
  margin-top: 10%;
  padding: 1em 2em;
  font-size: 2em;
  color: #fff;
  font-family: arial, sans-serif;
  text-decoration: none;
  border-radius: 0.3em;
  position: relative;
  background-color: #ccc;
  background-image: linear-gradient(to top, #C0357E, #EE5840);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

#container div a:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3em;
  background-image: linear-gradient(to top, #6d8aa0, #343436);
  transition: opacity 0.5s ease-out;
  z-index: 2;
  opacity: 0;
}

#container div a:hover:after {
  opacity: 1;
}
#container div a span {
  position: relative;
  z-index: 3;
}

这对你有用吗? 根据您的需要更改颜色:)

非常感谢

.element { 位置:相对; 宽度:200 px; 身高:150 px; 背景图像:线性梯度(45度,蓝色,水); z - index: 2; } {前.element:: 位置:绝对的; 内容:“”; 插图:0;/*与{top: 0相同;右:0;底部:0;左:0;}* / 背景-图像:线性梯度(底部,红色,橙色); z - index: 1; 透明度:0; 过渡:不透明度0.25s线性; } {前.element:徘徊:: 透明度:1; } 身体< > < div class = "元素" > < / div > 身体< / >

我在工作中使用这个:)IE6+ https://gist.github.com/GrzegorzPerko/7183390

如果使用文本元素,不要忘记<element class="ahover"><span>Text</span></a>。

.ahover {
    display: block;
    /** text-indent: -999em; ** if u use only only img **/
    position: relative;
}
.ahover:after {
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 1;
}
.ahover:hover:after {
    opacity: 1;
}
.ahover span {
    display: block;
    position: relative;
    z-index: 2;
}

在codepend上发现了一个很好的hack,可以修改不透明度属性,但通过利用伪元素实现从一个渐变到另一个渐变。他所做的就是设置:after,这样当你改变实际元素的不透明度时,:after元素就会显示出来,看起来就像渐变一样。我觉得分享一下会有用。

原始代码来源:http://codepen.io/sashtown/pen/DfdHh

.button { display: inline-block; margin-top: 10%; padding: 1em 2em; font-size: 2em; color: #fff; font-family: arial, sans-serif; text-decoration: none; border-radius: 0.3em; position: relative; background-color: #ccc; background-image: linear-gradient(to top, #6d8aa0, #8ba2b4); -webkit-backface-visibility: hidden; z-index: 1; } .button:after { position: absolute; content: ''; top: 0; left: 0; width: 100%; height: 100%; border-radius: 0.3em; background-image: linear-gradient(to top, #ca5f5e, #d68584); transition: opacity 0.5s ease-out; z-index: 2; opacity: 0; } .button:hover:after { opacity: 1; } .button span { position: relative; z-index: 3; } body { text-align: center; background: #ddd; } <a class="button" href="#"><span>BUTTON</span></a>