如何创建带有波浪边的形状

时间:2015-05-01 21:07:18

标签: html css html5 dreamweaver

我需要在Dreamweaver上制作自定义形状(请参见附图)并找到以下代码以供参考。我不确定参考代码中要更改哪些值来实现我的自定义形状。我不知道要更改哪些值:顶部,左侧,宽度或高度以适合我的自定义形状。我的最大宽度是1832px。最大波浪高度为179px。较小的波浪高度为113px。请帮忙。

Black Shape

参考: http://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>

0 个答案:

没有答案