作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我想只使用 CSS3 制作一个透明的切出的半圆形。唯一的要求是构成形状的所有元素必须是黑色或透明。
我不能在上面使用带有白色圆圈的黑色矩形,因为半圆必须是透明的并且让背景显示出来。
想要的形状:
最佳答案
可能可以用 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"> <span class="circle"></span></div>
关于html - 从div中切出的透明半圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8503636/
我是一名优秀的程序员,十分优秀!