meterscao / grunt-sprite

grunt合并雪碧图插件
MIT License
84 stars 18 forks source link

css中图片的url合并问题 #6

Open xiongdan506 opened 10 years ago

xiongdan506 commented 10 years ago

目前生成的: .a{bacgrount-imgage:url(./pic.png''); background-position:0 0} .b{bacgrount-imgage:url(./pic.png''); background-position:0 10px} .....

可否变成: .a,.b{bacgrount-imgage:url(./pic.png''); }

.a{background-position:0 0} .b{background-position:0 10px}

觉得可以提供一种这样的方式进行配置生成;部分优化过程中,会考虑对图片base64,如第一种会导致css文件变得非常大。

meterscao commented 10 years ago

感谢建议,因为已经有考虑打算在后面的版本中加入 base64 的支持,通过某个配置项来决定是否启用将雪碧图转成 base64 格式(尽管在移动网页的开发中我们并不建议这么做),具体实施还要再等等,并且非常欢迎贡献这部分的代码,感谢。

谢谢关注。