css – 透明空心或切出圆

前端之家收集整理的这篇文章主要介绍了css – 透明空心或切出圆前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以只使用CSS切出一个空心圆?

这我们都可以做:

但我们可以这样做吗?

圆必须是中空和透明的。因此,问题不是通过在一个div上放置一个纯色圆来解决

解决方法

你可以用两种不同的技术实现一个透明的切出圆:

1.SVG

以下示例使用inline svg.第一个代码段使用mask element切出透明圆,第二个空心圆用path element切成。圆用2 arc commands

使用mask元素:

body{background:url('https://farm9.staticflickr.com/8760/17195790401_ceeeafcddb_o.jpg');background-size:cover;}
<svg viewBox="0 0 100 50" width="100%">
  <defs>
    <mask id="mask" x="0" y="0" width="80" height="30">
      <rect x="5" y="5" width="90" height="40" fill="#fff"/>
      <circle cx="50" cy="25" r="15" />
    </mask>
  </defs>
  <rect x="0" y="0" width="100" height="50" mask="url(#mask)" fill-opacity="0.7"/>    
</svg>

有一个路径元素:

body{background: url('https://farm9.staticflickr.com/8760/17195790401_ceeeafcddb_o.jpg');background-size:cover;}
svg{
  display:block;
  width:70%;
  height:auto;
  margin:0 auto;
}
path{
  transition:fill .5s;
  fill:#E3DFD2;
}
path:hover{
  fill:pink;
}
<svg viewBox="-10 -1 30 12">
  <path d="M-10 -1 H30 V12 H-10z M 5 5 m -5,0 a 5,5 0 1,0 10,0 -10,0z"/>
</svg>

在这种情况下使用SVG的主要优点是:

>较短的代码
>您可以轻松使用图像或渐变填充圆形蒙版
>保持形状的边界并且仅在相对于掩模的填充上触发鼠标事件(在示例中悬停透明的切出圆圈)

2. CSS只使用Box-SHADOWS

创建一个div with overflow:hidden;和一个圆形伪元素在其内与border-radius。给它一个巨大的盒子阴影,没有背景:

div{
    position:relative;
    width:500px; height:200px;
    margin:0 auto;
    overflow:hidden;
}
div:after{
    content:'';
    position:absolute;
    left:175px; top:25px;
    border-radius:100%;
    width:150px; height:150px;
    Box-shadow: 0px 0px 0px 2000px #E3DFD2;
}

body{background: url('https://farm9.staticflickr.com/8760/17195790401_ceeeafcddb_o.jpg');background-size:cover;}
<div></div>

浏览器对Box-shadows的支持是IE9,见canIuse

同样的方法是使用border而不是Box-shadows。这是有趣的,如果你需要支持不支持像IE8的Box-shadows的borowsers。该技术是相同的,但你需要补偿的顶部和左侧的值,以保持圆在div的中心:

body{
    background: url('https://farm9.staticflickr.com/8760/17195790401_ceeeafcddb_o.jpg');
    background-size:cover;
}
div{
    position:relative;
    width:500px; height:200px;
    margin:0 auto;
    overflow:hidden;
}
div:after{
    content:'';
    position:absolute;
    left:-325px; top:-475px;
    border-radius:100%;
    width:150px; height:150px;
    border:500px solid #E3DFD2;
}
<div></div>
原文链接:https://www.f2er.com/css/221652.html

猜你在找的CSS相关文章