を使用して背景画像を変更しようとしています
Math.floor((Math.random());
HTMLファイル内で呼び出されるCSSファイルの行の1つは次のとおりです。
.slider { width: 990px; height: 378px; position: relative; background: url(images/slide-img.png) no-repeat 0 0;}
私が探しているのは、次のステートメントを使用して 1 から 4 までの乱数を取得し、ランダムに取得した数に基づいてさまざまな背景画像を表示することです。そこで、CSS ファイルから上記の行を削除し、HTML ファイルに次のコードを追加することにしました。
var randomNumber = Math.floor((Math.random()*4)+1); // random number (no more than 4 or the array will be out of bounds)
if (randomNumber == 1) {
document.write ('<style>.slider { width: 990px; height: 378px; position: relative; background: url(images/slide-img.png) no-repeat 0 0;}</style>');
}
if (randomNumber == 2) {
document.write ('<style>.slider { width: 990px; height: 378px; position: relative; background: url(images/slide-img2.png) no-repeat 0 0;}</style>');
}
if (randomNumber == 3) {
document.write ('<style>.slider { width: 990px; height: 378px; position: relative; background: url(images/slide-img3.png) no-repeat 0 0;}</style>');
}
if (randomNumber == 4) {
document.write ('<style>.slider { width: 990px; height: 378px; position: relative; background: url(images/slide-img4.png) no-repeat 0 0;}</style>');
}
これにより、空白の HTML ページが生成されました。上記の方法を使用して、4 つの個別の CSS ファイルを作成せずにこれを実行しようとしています。