1. ホーム
  2. css

[解決済み] cssによる波状の形状

2022-02-10 11:51:02

質問

この画像を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>