【性能优化】——前端性能优化之图片

前言:本文参考学习自 RenChao Guan的博客,来源FSUX.ME,感谢原作者,本文的思维导图为自己整理


 

【性能优化】——前端性能优化之图片

【性能优化】——前端性能优化之图片

补充:

  • 离散余弦算法 图片加载方式

【性能优化】——前端性能优化之图片

  • CSS Sprites

【性能优化】——前端性能优化之图片

  • 响应式动态图片加载(SDK)
<picture>
       <source src="/path/to/medium-image.png" media="(min-width:600px)">
        <source src="/path/to/large-image.png" media="(min-width:800px)">
        <image src="/path/to/mobile-image.png" alt="image description">
</picture>

 

posted @ 2017-10-29 23:42 柳洁琼Elena 阅读(...) 评论(...) 编辑 收藏

相关文章:

  • 2021-12-15
  • 2021-12-30
  • 2021-09-27
  • 2021-10-03
  • 2021-05-17
  • 2022-01-09
  • 2022-03-08
猜你喜欢
  • 2022-01-21
  • 2021-08-21
  • 2023-04-04
  • 2022-12-23
  • 2021-06-07
相关资源
相似解决方案