4カラムレイアウト/1:1画像/srcset sizes 完全版
1:1比率の画像とsrcset sizesを使った4カラムのレスポンシブのレイアウトサンプル。
4-4-2カラム
■Windowsの「高DPI設定」と「通常DPI設定」の両方で2倍の画像を表示させる
<div class="main-inner flex">
<div class="flex-4-4-2">
<img decoding="async" loading="lazy" data-srcset="
https://example.com/img/img-4-2-2-448-448.jpg 224w,
https://example.com/img/img-4-2-2-368-368.jpg 368w,
https://example.com/img/img-4-2-2-416-416.jpg 416w,
https://example.com/img/img-4-2-2-448-448.jpg 448w"
src="https://example.com/img/spacer.png"
data-src="https://example.com/img/img-4-2-2-448-448.jpg"
alt="テスト画像" width="448" height="448" class="lazyload ar1-1 fadein"
data-sizes="(max-width:416px) 184px, (max-width:464px) 208px, 224px">
</div>
</div>
●通常DPI設定で表示させる倍の画像
https://example.com/img/img-4-2-2-448-448.jpg 224w
●高DPI設定で表示させる倍の画像
https://example.com/img/img-4-2-2-448-448.jpg 448w
srcsetの中に「224w」「448w」とサイズ指定分けした同じ画像を用意して通常DPI設定でも2倍の画像を表示させる。
sizes="(max-width:416px) 184px, (max-width:464px) 208px, 224px"
sizesで「224px」と設定として、PC表示の時に
- 368px(表示サイズ184px)
- 416px(表示サイズ208px)
- 448px(表示サイズ224px)
の画像候補から「サイズが一番近い」画像をデバイスに選んでもらう。
4-3-2カラム
■Windowsの「高DPI設定」と「通常DPI設定」の両方で2倍の画像を表示させる
<div class="main-inner flex">
<div class="flex-4-3-2">
<img decoding="async" loading="lazy" data-srcset="
https://example.com/img/img-4-3-2-448-448.jpg 224w,
https://example.com/img/img-4-3-2-368-368.jpg 368w,
https://example.com/img/img-4-3-2-416-416.jpg 416w,
https://example.com/img/img-4-3-2-448-448.jpg 448w,
https://example.com/img/img-4-3-2-544-544.jpg 544w"
src="https://example.com/img/spacer.png"
data-src="https://example.com/img/img-4-3-2-544-544.jpg"
alt="テスト画像" width="544" height="544" class="lazyload ar1-1 fadein"
data-sizes="(max-width:416px) 184px, (max-width:464px) 208px, (max-width:880px) 272px, 224px">
</div>
</div>
●通常DPI設定で表示させる倍の画像
https://example.com/img/img-4-3-2-448-448.jpg 224w
●高DPI設定で表示させる倍の画像
https://example.com/img/img-4-3-2-448-448.jpg 448w
srcsetの中に「224w」「448w」とサイズ指定分けした同じ画像を用意して通常DPI設定でも2倍の画像を表示させる。
sizes="(max-width:416px) 184px, (max-width:464px) 208px, (max-width:880px) 272px, 224px"
sizesで「224px」と設定として、PC表示の時に
- 368px(表示サイズ184px)
- 416px(表示サイズ208px)
- 448px(表示サイズ224px)
- 544px(表示サイズ272px)
の画像候補から「サイズが一番近い」画像をデバイスに選んでもらう。
4-2-2カラム
■Windowsの「高DPI設定」と「通常DPI設定」の両方で2倍の画像を表示させる
<div class="main-inner flex">
<div class="flex-4-2-2">
<img decoding="async" loading="lazy" data-srcset="
https://example.com/img/img-4-2-2-448-448.jpg 224w,
https://example.com/img/img-4-2-2-368-368.jpg 368w,
https://example.com/img/img-4-2-2-416-416.jpg 416w,
https://example.com/img/img-4-2-2-448-448.jpg 448w,
https://example.com/img/img-4-2-2-832-832.jpg 832w"
src="https://example.com/img/spacer.png"
data-src="https://example.com/img/img-4-2-2-832-832.jpg"
alt="テスト画像" width="832" height="832" class="lazyload ar1-1 fadein"
data-sizes="(max-width:416px) 184px, (max-width:464px) 208px, (max-width:880px) 416px, 224px">
</div>
</div>
●通常DPI設定で表示させる倍の画像
https://example.com/img/img-4-2-2-448-448.jpg 224w
●高DPI設定で表示させる倍の画像
https://example.com/img/img-4-2-2-448-448.jpg 448w
srcsetの中に「224w」「448w」とサイズ指定分けした同じ画像を用意して通常DPI設定でも2倍の画像を表示させる。
sizes="(max-width:416px) 184px, (max-width:464px) 208px, (max-width:880px) 416px, 224px"
sizesで「224px」と設定として、PC表示の時に
- 368px(表示サイズ184px)
- 416px(表示サイズ208px)
- 448px(表示サイズ224px)
- 832px(表示サイズ416px)
の画像候補から「サイズが一番近い」画像をデバイスに選んでもらう。