html 内联媒体查询图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 内联媒体查询图像相关的知识,希望对你有一定的参考价值。

<!-- Here's an exammple of how to set up media queries inline.  
As in this example,  this is handy for swapping out different sized images at
different screen sizes -- >

<picture> 
  <source media="(min-width: 1024px)" »
  srcset="fullsize.jpg">
  <source media="(min-width: 700px)" »
  srcset="midsize.jpg">
  <img src="crop.jpg" alt="My image">
</picture>”

Excerpt From: Jeremy Keith and Rachel Andrew. “HTML5 for Web Designers, 2nd Edition.” iBooks. 
<!-- You can also use the above method to deliever different images for different resolution screens. -->

<picture>
  <source media="(min-width: 1024px)" 
    srcset="fullsize-1x.jpg 1x, fullsize-2x.jpg »
    2x, fullsize-3x.jpg 3x">
    <img src="crop-1x.jpg" alt="My image" »
    srcset="crop-2x.jpg 2x, crop-3x.jpg 3x">
</picture>”

Excerpt From: Jeremy Keith and Rachel Andrew. “HTML5 for Web Designers, 2nd Edition.” iBooks. 

以上是关于html 内联媒体查询图像的主要内容,如果未能解决你的问题,请参考以下文章

使用媒体查询内联样式[重复]

Styled Components - 内联样式与媒体查询样式重叠

我可以在内部 CSS 中使用媒体查询,它会避免加载我定义的背景图像吗?

Chrome 不尊重视频源内联媒体查询

带有内联样式表和媒体查询的 Razor 视图 [重复]

javascript Gulp CSS媒体查询内联