gpt4 book ai didi

html - 具有插入曲线和透明背景的 CSS 形状

转载 作者:太空狗 更新时间:2023-10-29 14:58:17 25 4
gpt4 key购买 nike

我需要创建一个像这张图片一样的 CSS 形状..

enter image description here

请检查这个fiddle我的工作我已经创建了类似的东西,但我不能给它一个曲线。

#shape {     
border-left: 70px solid transparent;
border-top: 100px solid red;
height: 0;
width: 200px;
}

谁能帮帮我?

最佳答案

您可以使用带有 border-radius 和 background-shadows 的伪元素来创建曲线并为曲线启用透明背景

输出:

CSS Shape with thransparent inset curve

#shape {
width: 300px; height: 100px;
position: relative;
overflow: hidden;
}

#shape:before {
content: '';
position: absolute;
top: 10%; right: 0;
width: 300%;
padding-bottom: 300%;
border-radius: 100%;
background: none;
box-shadow: 10px -10px 5px 300px #F15723;
z-index: -1;
}

body{background:url(https://farm9.staticflickr.com/8461/8048823381_0fbc2d8efb.jpg);background-size:cover;}
<div id="shape"></div>

demo

关于html - 具有插入曲线和透明背景的 CSS 形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24696892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com