如何创建透明圆圈?

时间:2014-10-30 13:49:44

标签: css css-shapes

有没有办法在CSS中获得此效果?

enter image description here

我尝试使用此css,但它仅剪切第一层。

div{
    width:300px;
    height:300px;
    position:relative;
    overflow:hidden;
}
div:before{
    content:'';
    position:absolute;
    bottom:50%;
    width:100%;
    height:100%;
    border-radius:100%;
    box-shadow: 0px 300px 0px 300px #448CCB;
}

1 个答案:

答案 0 :(得分:8)

最简单的方法是使用透明 DIV,溢出隐藏(灰色) 比在里面简单地放一个带有阴影的圆圈,真的很大。

html, body{height:100%;}
body{
    background: url(http://web-vassets.ea.com/Assets/Richmedia/Image/Screenshots/FIFA-Street-London1web.jpg?cb=1330546446) 50% / cover;
}

.hasCircle{
    width:150px;
    height:300px;
    position:relative;
    overflow:hidden;
  float:left;
}
.hasCircle:after{
    content:" ";
    position:absolute;
    left:0; right:0;
    margin:100px auto;
    width:100px;
    height:100px;
    border-radius:50%;
    box-shadow: 0 0 0 1000px #444;
}
<div class="hasCircle"></div>
<div class="hasCircle"></div>
<div class="hasCircle"></div>

正如您在上面所看到的,我使用了:after伪元素,它可能会阻止.hasCircle中的某些文本可见(由于重叠的伪元素),但它只是为了得到一个想法,你可以使用像:

这样的真实元素来做到这一点
<div class="boxTransparentOverflow">
   <div class="theTransparentCircleWithGraySpread"></div>
   Some text
</div>