我試圖找到一種更好的方式來調整頂部橫幅圖像的大小,創建不同的圖像,以適應根據視口方向和視口大小而不會將圖像「切割」或distorced。我創建了下面的代碼(css + js),我想知道是否是正確的方式,或者是否存在更好的方法。調整頂部橫幅圖像大小的最佳方式(視口/ html)
CSS來<img>
或<div>
與background-image
:
max-width: 100%; width: auto; height: auto;
JS:
$(document).ready(function() {
resizeViewPort();
});
$(window).resize(function() {
resizeViewPort();
});
function resizeViewPort() {
alert(($(window).height()/$(window).width()).toFixed(2));
var height = $(window).height(), width = $(window).width();
var scale = (height/width).toFixed(2);
if (scale >= 1.7 && scale <= 1.8) {
if (height <= 736) { // 736x414
alert("Mobile PORTRAIT");
}
}
else if (scale >= 1.3 && scale <= 1.6) {
if (height <= 1024) { // 1024x768
alert("Tablet PORTRAIT");
}
}
else if (scale >= 0.6 && scale <= 0.8) {
if (height <= 768) { // 768x1024
alert("Tablet LANDSCAPE or Desktop 4:3");
} else if (height <= 900) { // 900x1440
alert("Desktop HD 16:10");
} else if (height <= 1200) { // 1200x1920
alert("Desktop FullHD 16:10");
}
}
else if (scale >= 0.5 && scale < 0.6) {
if (height <= 414) { // 414x736
alert("Mobile LANDSCAPE");
} else if (height <= 720) { // 720x1280
alert("Desktop HD 16:9");
} else if (height <= 1080) { // 1080x1920
alert("Desktop FullHD 16:9");
}
}
}
需要的效果是什麼?保持寬高比?調整到固定比例?目前還不清楚你想實現什麼。 –
@JosephMarikle我想根據視口的方向和視口大小創建不同的圖像,而不會將圖像「切割」或失真。 –