我试图在悬停时用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)))
}

当前回答

我想让div看起来像一个3D球体,并通过颜色过渡。 我发现渐变背景色还不能过渡。 我在元素前面放置了一个径向梯度背景(使用z-index),并带有一个过渡的固体背景。

/* overlay */
z-index : 1;
background : radial-gradient( ellipse at 25% 25%, rgba( 255, 255, 255, 0 ) 0%, rgba( 0, 0, 0, 1 ) 100% );

然后下面的div.ball:

transition : all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);

然后改变div.ball的背景颜色,瞧!

https://codepen.io/keldon/pen/dzPxZP

其他回答

一种解决方法是转换背景位置,以产生渐变变化的效果: http://sapphion.com/2011/10/css3-gradient-transition-with-background-position/

CSS3渐变过渡与背景位置 虽然你不能直接使用CSS的transition属性来动画渐变,但是你可以使用background-position属性来实现简单的渐变动画: 它的代码非常简单:

#DemoGradient{ background: -webkit-linear-gradient(#C7D3DC,#5B798E); background: -moz-linear-gradient(#C7D3DC,#5B798E); background: -o-linear-gradient(#C7D3DC,#5B798E); background: linear-gradient(#C7D3DC,#5B798E); -webkit-transition: background 1s ease-out; -moz-transition: background 1s ease-out; -o-transition: background 1s ease-out; transition: background 1s ease-out; background-size:1px 200px; border-radius: 10px; border: 1px solid #839DB0; cursor:pointer; width: 150px; height: 100px; } #DemoGradient:Hover{ background-position:100px; } <div id="DemoGradient"></div>

不管怎样,这里有一个Sass mixin:

用法:

@include gradientAnimation(红色,蓝色,.6s);

混合:

@mixin gradientAnimation( $start, $end, $transTime ){
    background-size: 100%;
    background-image: linear-gradient($start, $end);
    position: relative;
    z-index: 100;
    &:before {
        background-image: linear-gradient($end, $start);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0; left: 0;
        opacity: 0;
        width: 100%;
        z-index: -100;
        transition: opacity $transTime;
    }
    &:hover {
        &:before {
            opacity: 1;
        }
    }
}

摘自Dave Lunny在Medium上的这篇很棒的文章:https://medium.com/@dave_lunny/ animing-css -gradients-using-only-css-d2fd7671e759

渐变还不支持过渡(尽管目前的规范说它们应该通过插值支持类似渐变到类似渐变的过渡)。

如果你想要一个背景渐变的渐隐效果,你必须在容器元素上设置一个不透明度,然后“过渡”不透明度。

(已经有一些浏览器版本支持渐变过渡(例如IE10。我在2016年在IE中测试了梯度转换,当时它们似乎可以工作,但我的测试代码不再工作了。)

更新:2018年10月 带有无前缀新语法的渐变过渡[例如径向渐变(…)]现在确认在Microsoft Edge 17.17134上工作(再次?)我不知道这是什么时候加入的。在最新的Firefox和Chrome / Windows 10上仍然不能工作。

更新:2021年12月 在最近的基于Chromium的浏览器中,使用@property的变通方法可以实现这一点(但在Firefox中不起作用)。请在YMMV上方看到@mahozad的回答(并点赞)。

在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>

一个更简洁的解决方案是设置背景色并使用蒙版图像。

#container div a {
  background-color: blue;
  transition: background 0.2s linear;
  width: 200px;
  height: 150px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .7), rgba(0, 0, 0, .4));
}

#container div a:hover { 
  background-color: red;
}