Q. 画像の読み込み時間とパフォーマンスの点で最も効率的な手法は何ですか?
シナリオ 1。
以下のように、メディア クエリを使用して異なるサイズの画像を読み込むことですか。
/* Smartphone */
@media screen and (max-width: 320px) {
.img-page-1-img {
background: url('../images/img-page-1-img-117.jpg') no-repeat;
width: 117px;
height: 77px;
}
}
/* Desktop */
@media only screen and (min-width: 769px) {
.img-page-1-img {
background: url('../images/img-page-1-img-234.jpg') no-repeat;
width: 234px;
height: 154px;
}
}
また...
シナリオ 2。
1 つの大きな画像を読み込み、CSS を使用して「ストレッチ」し、max-width プロパティを設定してサイズを変更します..?
img {
max-width: 100%;
}
ありがとう....