波形与css

前端之家收集整理的这篇文章主要介绍了波形与css前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用CSS重新创建这个图像:

我不需要重复。这是我开始的,但它只是一条直线:

#wave {
  position: absolute;
  height: 70px;
  width: 600px;
  background: #e0efe3;
}
<div id="wave"><div/>

解决方法

我不知道它是你的形状,但它是接近的 – 你可以玩的价值观:

https://jsfiddle.net/7fjSc/9/

#wave {
  position: relative;
  height: 70px;
  width: 600px;
  background: #e0efe3;
}
#wave:before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 340px;
  height: 80px;
  background-color: white;
  right: -5px;
  top: 40px;
}
#wave:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 300px;
  height: 70px;
  background-color: #e0efe3;
  left: 0;
  top: 27px;
}
<div id="wave"></div>
原文链接:https://www.f2er.com/css/219081.html

猜你在找的CSS相关文章