に応じて、私は、それが最初の三つの画像と比較して、センタリングされるように、最後の画像を配置する必要があります。
どうすればよいですか?
position()
window.onresize = function(event) {
position();
};
function position(){
var id = document.getElementById("imageDisplay");
console.log(window.innerWidth);
if(window.innerWidth > 400) {
console.log("left");
id.style.left = "200px";
id.style.bottom = 0;
id.style.top = "20px";
} else if(window.innerWidth <= 250) {
console.log("left");
id.style.left = "200px";
id.style.top = "20px";
id.style.right = 0;
}
}
私はちょうど上記のコードを持っていますが、私はまだ最後の画像を中央に置くことができず、少し左に移動します。私は自分のページ上ではconsole.logを置き換えるかどう 私が( "左") はconsole.log( "右") にはconsole.log変更する必要があり – CaptSpirk