z-index占形状的一半

לבנ*_*לכה 4 html css css-shapes

我想塑造如下:

在此输入图像描述

我到目前为止尝试了但是如何将它们混合在一起:

.clal-loader{
  display:flex;
}
.clal-loader div{
  border: 10px solid #38477e;
  border-left: 0;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  width: 30px;
  height: 30px;
}
.clal-loader div:nth-child(1){
   border-color:#0cabec;
}

.clal-loader div:nth-child(2){
 transform: rotate(-180deg);
     position: absolute;
    left: 25px;
    z-index: -1;
}
Run Code Online (Sandbox Code Playgroud)
<div class="clal-loader">
  <div></div>
  <div></div>
</div>
Run Code Online (Sandbox Code Playgroud)

Tem*_*fif 5

我会考虑径向渐变,只考虑下面的一个元素.基本上它们是4个相似的渐变,每个渐变创建一个四分之一圆,然后调整顺序以获得最终形状:

.box {
  width:100px;
  height:150px;
  background:
    radial-gradient(circle at bottom left, transparent 40%,blue  40%, blue  60%,transparent 61%) top,  
    radial-gradient(circle at bottom right,transparent 40%,green 40%, green 60%,transparent 61%) top,
    radial-gradient(circle at top right,   transparent 40%,green 40%, green 60%,transparent 61%) bottom,
    radial-gradient(circle at top left,    transparent 40%,blue  40%, blue  60%,transparent 61%) bottom;
    
  background-size:100% 50%;
  background-repeat:no-repeat;
  
}
Run Code Online (Sandbox Code Playgroud)
<div class="box">

</div>
Run Code Online (Sandbox Code Playgroud)

使用两个元素,您可以考虑每个div的伪元素创建与第一个代码相同的思考,然后您需要做的就是调整z-index.

.box {
  width:100px;
  height:100px;
  position:relative;
}
.box > div {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}
.box > div:before,
.box > div:after {
  content:"";
  position:absolute;
  width:70%;
  height:50%;
}

.box > div:first-child {
  color:red;
}

.box > div:last-child {
  color:blue;
}

.box > div:first-child::before {
  z-index:1;
  top:0;
  left:0;
  border-top:15px solid;
  border-right:15px solid;
  border-top-right-radius:100%;
}
.box > div:first-child::after {
  bottom:0;
  left:0;
  border-bottom:15px solid;
  border-right:15px solid;
  border-bottom-right-radius:100%;
}
.box > div:last-child::before {
  top:0;
  right:0;
  border-top:15px solid;
  border-left:15px solid;
  border-top-left-radius:100%;
}
.box > div:last-child::after {
  bottom:0;
  right:0;
  border-bottom:15px solid;
  border-left:15px solid;
  border-bottom-left-radius:100%;
}

*,*::before,*::after {
  box-sizing:border-box;
}
Run Code Online (Sandbox Code Playgroud)
<div class="box">
  <div></div>
  <div></div>
</div>
Run Code Online (Sandbox Code Playgroud)