在Bootstrap导航中动画CSS渐变

时间:2015-03-15 00:28:22

标签: css css3 twitter-bootstrap css-transitions css-animations

我正在使用bootstrap atm并注意到我的简单css导航按钮转换不起作用。

我把它放到引导程序中,然后删除了我的渐变背景,并且只有一个坚实的背景颜色并且它起作用。

CSS梯度转换的规范是否存在?有什么方法可以做到这一点吗?如果没有,最佳解决方案是什么?。

下面是我的小提琴,渐变是橙色悬停。

http://jsfiddle.net/MgcDU/10245/

渐变如下,因此它在多个浏览器中有所作为。

    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(254, 204, 177, 1)), color-stop(0.5, rgba(241, 116, 50, 1)), color-stop(0.51, rgba(234, 85, 7, 1)), to(rgba(251, 149, 94, 1)));
    background: -webkit-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: -moz-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: -o-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feccb1', endColorstr='#fb955e', GradientType=0);

1 个答案:

答案 0 :(得分:4)

linear-gradient失败的原因是纯色有效,因为linear-gradient实际上是在创建一个图像。它对应的longhand属性是background-image,而不是background-color

background-image不是过渡性的,但是使用定位和伪元素,我们可以使用opacity属性来模拟它。这是一个展示这种技术的简单例子。

实施例

li {
    display: inline-block;
    width: 200px;
    height: 200px;
    background: black;
    text-align: center;
    line-height: 200px;
    font-size: 40px;
    /*Must have positioning.*/
    position: relative;
}
li a {
    color: white;
    /*Must have positoning.*/
    position: relative;
}
li:before {
    /*Make it fill the container.*/
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /*Create gradient.*/
    background: rgb(254, 204, 177);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(254, 204, 177, 1)), color-stop(0.5, rgba(241, 116, 50, 1)), color-stop(0.51, rgba(234, 85, 7, 1)), to(rgba(251, 149, 94, 1)));
    background: -webkit-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: -moz-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: -o-linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    background: linear-gradient(rgba(254, 204, 177, 1) 0%, rgba(241, 116, 50, 1) 50%, rgba(234, 85, 7, 1) 51%, rgba(251, 149, 94, 1) 100%);
    /*Transition the opacity.*/
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

li:hover:before {
    opacity: 1;
}
<li>
    <a href="#">test</a>
</li>