问:就图像加载时间和性能而言,哪种技术最有效...?
情景 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。
加载一个大图像并使用 CSS 来“拉伸”并通过设置 max-width 属性来调整大小..?
img {
max-width: 100%;
}
谢谢....