現在、私はこのコードを使用して、通常のサイトで再生されるビデオの代わりに静止画像の背景を呼び出しています。
media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
html{
background: url('img/background.jpg') no-repeat center center fixed !important;
background-size: cover;
height: 100%;
}
}
ページごとに異なる画像を利用したいのですが、どうすればこれを実現できますか?
ありがとう。