show 2_image.jpgの代わりにページの読み込み時に白い背景を削除する必要があります。その後、body image 1_image.jpgが表示されます。スクリプトが使用される可能性があります。私はこれを試しましたが動作しません。ページ上の白い背景を削除する代わりに画像を表示する
<style>
body {
background: url("../images/1_image.jpg") #070707;
background-color:#070707;
background-attachment: fixed;
background-size: cover;
background-repeat:no-repeat;
}
.box {
background:url("../images/2_image.jpg") no-repeat;
background-size:cover;
background-position:center;
background-attachment: fixed;
width:100%;
height:100%;
position:absolute;
z-index:9999;
top:0px;
}
</style>
<div class="box"></div>
質問に句読点を追加できますか? –