gpt4 book ai didi

html - 如何使用CSS创建波形

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

我正在尝试将 li 元素显示为波浪。我不想使用任何背景图片,但 border-radius 不支持负值。我希望你能帮助我。

is this possible in CSS

最佳答案

我能得到的最接近的是仅使用 css。

.one {
position: absolute;
top: 22px;
left: 19px;
width: 230px;
height: 180px;
background: #0F1E3C;
border-radius: 100%;
clip: rect(70px, auto, auto, 45px);
transform:rotate(90deg);
}

.one:before {
content: '';
position: absolute;
top: -15px;
left: -62px;
width: 200px;
height: 200px;
background: white;
border-radius: 100%;
}

.two {
position: absolute;
top: 156px;
left: 59px;
width: 230px;
height: 180px;
background: #0F1E3C;
border-radius: 100%;
clip: rect(70px, auto, auto, 45px);
transform:rotate(-90deg);
}

.two:before {
content: '';
position: absolute;
top: -15px;
left: -62px;
width: 200px;
height: 200px;
background: white;
border-radius: 100%;
}
<div class="one"></div>
<div class="two"></div>

关于html - 如何使用CSS创建波形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31915835/

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