gpt4 book ai didi

css - CSS 或 SVG 中的波浪

转载 作者:技术小花猫 更新时间:2023-10-29 10:54:59 26 4
gpt4 key购买 nike

我正在尝试使用 CSS 创建柔和的波浪,但遇到了一些麻烦。我现在正在使用 border-radius 来创建波浪,但它看起来更像云。我尝试使用 transform: translateZ(180deg);div 颜色然后颠倒了。

这是我想要的: Waves in CSS or SVG

这是我拥有的: Waves made with CSS

.wave1 {
left: 0%;
margin-left: -50px;
}

.wave2 {
margin-left: -69px;
}

.wave3 {
margin-left: -69px;
}

.wave4 {
margin-left: -69px;
}

.waves {
width: 200%;
clear: none;
z-index: 100;
position: absolute;
margin-top: 200px;
margin-left: -150px;
}

.waves div {
float: left;
width: 500px;
height: 100px;
border: solid 5px #000;
border-color: transparent;
border-radius: 70%/100px 100px 0 0;
background-color: #fff;
}

.bottom-half {
width: 100%;
height: 50%;
top: 70%;
position: absolute;
background-color: #fff;
}

.background-waves {
width: 200%;
clear: none;
z-index: 50;
position: absolute;
margin-top: 190px;
margin-left: 75px;
}

.bwave1 {
left: 0%;
margin-left: -50px;
}

.bwave2 {
margin-left: -69px;
}

.bwave3 {
margin-left: -69px;
}

.bwave4 {
margin-left: -69px;
}

.background-waves div {
float: left;
width: 500px;
height: 100px;
border: solid 5px #000;
border-color: transparent;
border-radius: 70%/100px 100px 0 0;
background-color: #fff;
opacity: 0.5;
}
<div class="waves">
<div class="wave1"></div>
<div class="wave2"></div>
<div class="wave3"></div>
<div class="wave4"></div>
<div class="wave5"></div>
</div>
<div class="background-waves">
<div class="bwave1"></div>
<div class="bwave2"></div>
<div class="bwave3"></div>
<div class="bwave4"></div>
<div class="bwave5"></div>
</div>

最佳答案

我建议使用内嵌手写的 SVG。您的形状非常简单,使用 SVG 制作波浪> <path>元素很简单。
所有你需要知道的 SVG path on MDN .在以下示例中,我将两个路径元素与 quadratic bezier curves 一起使用制造波浪:

svg {
background: url('https://farm9.staticflickr.com/8461/8048823381_0fbc2d8efb.jpg') no-repeat center center;
background-size: cover;
width: 100%;
display: block;
}
<svg viewbox="0 0 100 25">
<path fill="#9EAFFD" opacity="0.5" d="M0 30 V15 Q30 3 60 15 V30z" />
<path fill="#9EAFFD" d="M0 30 V12 Q30 17 55 12 T100 11 V30z" />
</svg>

关于css - CSS 或 SVG 中的波浪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44665993/

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