我一直在尝试制作具有不规则圆形侧面的DIV,如下所示:
我已经检查了一些解决方案,而最接近的解决方案是使用border-radius。我用过:
border-bottom-left-radius: 80%50px;
border-bottom-right-radius: 30%30px;
这就是我所拥有的:
如何才能做到这一点?
最佳答案
您可以考虑 clip-path
.box {
height: 200px;
width: 200px;
background: blue;
-webkit-clip-path: circle(75% at 65% 10%);
clip-path: circle(75% at 65% 10%);
}
<div class="box">
</div>
或使用
radial-gradient
.box {
height: 200px;
width: 200px;
background: radial-gradient(circle at 65% 10%, blue 75%,transparent 75.5%);
}
<div class="box">
</div>
或者使用带有
border-radius
的伪元素并依靠溢出.box {
height: 200px;
width: 200px;
position:relative;
overflow:hidden;
}
.box:before {
content:"";
position:absolute;
top:0;
left:-10%;
right:-10%;
bottom:10%;
background:blue;
border-radius:0 0 50% 100%;
}
<div class="box">
</div>
而且,我们不要忘记SVG解决方案(作为常规元素或背景)
svg {
display:inline-block;
}
.box {
display:inline-block;
height:200px;
width:200px;
background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' width='200' height='200' fill='blue'> <path d='M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z' /></svg>")0 0/100% 100% no-repeat;
}
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 64 64'
width='200' height='200'
fill='blue'>
<path d='M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z' />
</svg>
<div class="box">
</div>
这是一个很好的在线工具,可以轻松调整SVG
http://jxnblk.com/paths/?d=M0 0 L0 28 C10 46 30 60 64 48 L64 0 Z
您也可以考虑使用
mask-image
:.box {
height: 200px;
width: 200px;
background:blue;
-webkit-mask-image: radial-gradient(circle at 65% 10%, #fff 75%,transparent 75.5%);
mask-image: radial-gradient(circle at 65% 10%, #fff 75%,transparent 75.5%);
}
<div class="box">
</div>
这是
radial-gradient
解决方案的另一种语法,不使用at
,其中is not supported in Safari.box {
height: 200px;
width: 200px;
background:
radial-gradient(circle, blue 60.5%,transparent 61%) 35% 100%/200% 200% no-repeat;
}
<div class="box">
</div>
关于html - 如何在div上创建不平坦的圆形侧面?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50439518/