删除与线相交的 svg 元素部分时出现问题

问题描述 投票:0回答:1

我尝试使用.line中的clip-path删除半圆底边与直线的交点,但没有成功。这是正确的方法还是还有其他方法?

我尝试使用

clip-path
删除半圆底边与直线的交点 在
.line
,但没有成功。这是正确的方法还是有其他方法? 我们该如何解决这个问题呢? 我们如何删除图中提到的部分?

enter image description here

body {
  margin: 0vh 0vw;
}

.header {
  position: relative;
  width: 100%;
  height: 12vh;
  background-color: #004d40;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  top: 0;
}

.line {
  position: absolute;
  left: 0;
  top: calc(50%);
  width: 100%;
  height: 0.25vh;
  background-color: white;
  z-index: 1;
}

svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG Header with Half Circle</title>

<div class="header">
  <div class="line"></div>
  <svg width="10vw" height="5vh" viewBox="0 0 100 50" preserveAspectRatio="xMidYMin meet" xmlns="http://www.w3.org/2000/svg">
        <path d="M0,0 A50,50 0 0,0 100,0" fill="none" stroke="white" stroke-width="3"/>
    </svg>
</div>

html css svg frontend web-frontend
1个回答
0
投票

为什么不使用包含实心圆的 SVG?这应该掩盖下面的线。

screenshot of suggested SVG

© www.soinside.com 2019 - 2024. All rights reserved.