我试图使用"前缀免费" (http://leaverou.github.io/prefixfree/)在图片过滤器上,似乎脚本没有添加-webkit-前缀。
以下是示例:http://codepen.io/barkins/pen/ByeGjd
img {
filter: sepia(.5);
}
不应该"#34;前缀免费"添加" -webkit-风格?所以它看起来像这样:
img {
filter: sepia(.5);
-webkit-filter: sepia(.5);
}
提前感谢任何帮助。