FF和IE中的平滑渐变

时间:2014-06-15 02:43:24

标签: css internet-explorer firefox gradient smooth

我有这些水平渐变从#191919到透明由http://colorzilla.com/gradient-editor/生成,但在FireFox 29和IE 8中它并不平滑。它的背景是#191919。 (颜色深度问题?) 如果它不是一个修复,那么它如何阻止这个浏览器?谢谢。

/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: #191919;
background: -moz-linear-gradient(left, rgba(25,25,25,1) 0%, rgba(25,25,25,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(25,25,25,1)), color-stop(100%,rgba(25,25,25,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(25,25,25,1) 0%,rgba(25,25,25,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#19191900',GradientType=1 ); /* IE6-8 */

这是一个jsfiddle

1 个答案:

答案 0 :(得分:0)

尝试使用IE 8:

-ms-filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#191919',GradientType=1 )"; /* IE8 */

你也必须包括这个:

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#19191900',GradientType=1 );

#191919

之后你还有两个额外的零