我正在研究应用程序哪个平台针对现代浏览器,但特别需要在不支持CSS3渐变的IE9上运行。任何人都可以建议任何替代(SVG除外)将使我受益匪浅。
.GRAD_LINEAR(@start:#EEA611; @end:#E3EE11) {
background: @start;
background-image:-webkit-gradient(linear, left top, left bottom, from(@start), to(@end));
background-image:-webkit-linear-gradient(top, @start, @end);
background-image:-moz-linear-gradient(top, @start, @end);
background-image:-o-linear-gradient(top, @start, @end);
background-image:linear-gradient(to bottom, @start, @end);
//Your suggestion...
}
有几种方法可以实现这一目标。
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
对你没问题。您可以在IE9中使渐变工作检查这个 - Colorzilla