gpt4 book ai didi

internet-explorer - IE10 上的 CSS3 线性渐变

转载 作者:行者123 更新时间:2023-11-28 09:02:27 25 4
gpt4 key购买 nike

我们决定最终支持 Internet Explorer,但目前仅支持 10。我一直在阅读 IE 对 CSS 的支持,我不确定目前是否可以在 IE 中执行此操作?

background: linear-gradient(bottom right,circle,rgba(0, 0, 0, .04),transparent 80px,transparent 100%);

有没有办法做到这一点,还是仍然需要退回到 png?

最佳答案

您的 OP 声明将无效。不,没有必要退回到图像。您的声明无效。解释你想在“线性”或“圆形”渐变之间做什么..或者只是去http://www.colorzilla.com/gradient-editor/并重建你的生产线。

你正在寻找这样的东西(跨浏览器向后兼容):

.shadow {

background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0.03) 31%, rgba(0,0,0,0) 32%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,0.03) 31%,rgba(0,0,0,0) 32%,rgba(0,0,0,0) 100%);
background: -o-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,0.03) 31%,rgba(0,0,0,0) 32%,rgba(0,0,0,0) 100%);
background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(0,0,0,0.03) 31%,rgba(0,0,0,0) 32%,rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 );
}

jsFiddle with yours and mine你可以在哪里玩

[发表评论]

关于 IE:“过滤器”规则适用于 IE9-,IE10 的预览版本使用“-ms”前缀语法,IE10 及更高版本使用标准语法。

有关详细信息,请参阅 linear-gradient page on MDN .

关于internet-explorer - IE10 上的 CSS3 线性渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15957320/

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