Skip to content

Instantly share code, notes, and snippets.

@ghostcode
Last active August 29, 2015 14:03
Show Gist options
  • Save ghostcode/1f3c56d25417b30898e1 to your computer and use it in GitHub Desktop.
Save ghostcode/1f3c56d25417b30898e1 to your computer and use it in GitHub Desktop.
关于base64图片

优缺点:

  • 在HTML中添加base64编码图片不会被缓存
  • 在css中添加base64图片放在css文件中,因为css会被缓存
  • base64图片不需要一次HTTP请求,从而可以获得一点性能提升。
  • ie7以及更早版本不支持base64编码图片。

使用场景:

  • 图片不能与其他图片以CSS Sprite的形式存在,只能独行
  • 图片从诞生之日起,基本上很少被更新
  • 图片的实际尺寸很小
  • 图片在网站中大规模使用

参考文章:

base64 工具

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment