私は、ブラウザウィンドウ全体を占有し、応答性の高い画像を取得する方法を見つけようとしています。ページが読み込まれるたびに、私はローカルにある選択したグループの写真から背景イメージを変更したいと思います。ウェブページのランダム背景画像
私はここでいくつかのソリューションを試しましたが、実際には何も動作していません。私が持っているHTMLは次のとおりです。
<div id="container">
<img src="Images/IMG_3764.JPG" alt="An island in the middle of the sea in Turkey" id="backgroundImage">
</div>
私が持っているCSSは次のとおりです。
body {
margin: 0;
}
#container {
width: 100%;
height: 100%;
margin: 0;
}
#backgroundImage {
width: 100%;
position: fixed;
top: 0;
left: 0;
}
html, body {
overflow: none !important;
overflow-x: none !important;
overflow-y: none !important;
}
私が試してみましたJSの解決策の一つは、これがある:あなたができるjQueryを使って
var image = new Array();
image[0] = "http://placehold.it/20";
image[1] = "http://placehold.it/30";
image[2] = "http://placehold.it/40";
image[3] = "http://placehold.it/50";
var size = image.length
var x = Math.floor(size*Math.random())
$('#backgroundImage').attr('src',image[x]);
あなたは動作しませんでしたあなたは試してみましたJavaScriptコードの例を持っていますか? – Bastiaanus
@Bastiaanus yeah申し訳ありません、ただそれを含めました –