gpt4 book ai didi

html - 从div中切出的透明半圆

转载 作者:技术小花猫 更新时间:2023-10-29 12:16:34 27 4
gpt4 key购买 nike

我想只使用 CSS3 制作一个透明的切出的半圆形。唯一的要求是构成形状的所有元素必须是黑色或透明

不能在上面使用带有白色圆圈的黑色矩形,因为半圆必须是透明的并且让背景显示出来。

想要的形状:

rectangle with cut out half circle

最佳答案

可能可以用 CSS :after 伪属性来实现,如下所示:

body {
background: green;
}

.rect {
height: 100px;
width: 100px;
background: rgba(0, 0, 0, 0.5);
position: relative;
margin-top: 100px;
margin-left: 100px;
}

.circle {
display: block;
width: 100px;
height: 50px;
top: -50px;
left: 0;
overflow: hidden;
position: absolute;
}

.circle:after {
content: '';
width: 100px;
height: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
border-radius: 100px;
background: rgba(0, 0, 0, 0);
position: absolute;
top: -100px;
left: -40px;
border: 40px solid rgba(0, 0, 0, 0.5);
}
<div class="rect">&nbsp;<span class="circle"></span></div>

View on JSFiddle

关于html - 从div中切出的透明半圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8503636/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com