此问题已在此处有答案:
How to not display an image if outside of div?(3个答案)
Make a DIV not be shown outside it's container(2个答案)
昨天关门了。
在我的网站,我有一个div(圆圈),使用位置在图像中的位置,但圆圈是ocupping一个exedent空间在右边谁是迫使视图宽度增长,如何隐藏只是exedent部分的圆圈?
我不想把圆移动到另一个位置,只是把多余的部分隐藏起来。
.floating-circles .big-circle {
position: absolute;
z-index: 1;
right: calc((-35vw / 2) + 9%);
bottom: calc((-35vw / 2) + 14%);
overflow: hidden;
overflow-x: hidden;
width: 35vw;
height: 35vw;
border-radius: 50%;
background: rgb(146, 28, 205);
background: linear-gradient(45deg, rgba(146, 28, 205, 1) 0%, rgba(153, 26, 177, 1) 40%, rgba(48, 35, 174, 1) 80%, rgba(48, 35, 174, 1) 100%);
}
<div class="floating-circles">
<div class="small-circle"></div>
<div class="big-circle"></div>
<!-- The big-circle is the circle causing the bug -->
</div>
完整项目代码here in github
1条答案
按热度按时间b09cbbtk1#
您可以防止
body
溢出:...或者使用一个
clip-path
来“剪切”主框之外的所有内容:试试看: