次のマークアップがあります
<body>
<div class="holder">
<div class="circle"></div>
</div>
</body>
body要素に固定背景を適用し、クラスホルダーに白い背景を適用しました
body {
background: url(image.png);
background-attachment: fixed;
}
.holder {
width: 500px;
height: 500px;
background: #fff;
}
.circle {
width: 100px;
height: 100px;
border-radius: 50%;
background: rgba(0, 0, 0, 0);
}
私がやろうとしたことは、円を透明にして体の背景を見ることです。簡単に言えば、私がしようとしているのは、円の周りの白い背景がまだ存在している間に、円を透明にして体の背景画像を見ることです。私の英語を許してください。みんな私を助けてください。