gpt4 book ai didi

css - Bootstrap 导航中的动画 CSS 渐变

转载 作者:行者123 更新时间:2023-11-28 09:35:19 26 4
gpt4 key购买 nike

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

我把它放在 Bootstrap 上,但后来删除了我的渐变背景,只有纯色背景并且它起作用了。

是否存在 CSS 渐变过渡规范?有什么办法可以做到这一点?如果不是,最好的解决方案是什么?

下面是我的渐变是橙色悬停的 fiddle 。

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);

最佳答案

原因linear-gradient在纯色起作用的地方失败是因为 linear-gradient 实际上创建了一个图像。它对应的普通属性是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>

关于css - Bootstrap 导航中的动画 CSS 渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29055894/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com