私は23歳の誕生日のガールフレンドのウェブサイトを作っています。主にモバイルで表示されます。背景画像は固定されていますが(デスクトップでは問題ありません)、モバイルでは、画像が一番下にスクロールしますが、スクロール後に調整されます。 (付属ビデオ:https://youtu.be/wKnxYXEy0mg)以下モバイル固定画像背景CSS、画像スクロール
CSS:背景が動いていない
body {
background-image:url(Gold2.jpg);
display: block;
background-color: gold;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position: center;
min-height: 500px;
}
現在のアドレスはhttps://playspace.neocities.org –