14

我正在尝试在椭圆形和半圆形之间创建混合。

半圆可以在 CSS 中这样创建:

.halfCircle{
     height:45px;
     width:90px;
     border-radius: 90px 90px 0 0;
     -moz-border-radius: 90px 90px 0 0;
     -webkit-border-radius: 90px 90px 0 0;
     background:green;
}

椭圆可以这样制作:

.oval { 
    background-color: #80C5A0;
    width: 400px;
    height: 200px;
    margin: 100px auto 0px;
    border-radius: 200px / 100px;
}

但是我怎样才能做一个半椭圆形的呢?到目前为止,这是我的尝试。发生的问题是我有平顶,在这里找到。谢谢!

4

3 回答 3

33

我用一种可能的解决方案更新了您的演示:

div {
  background-color: #80C5A0;
  width: 400px;
  height: 100px;
  border-radius: 50% / 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
<div></div>

通过使用基于百分比的单位,无论您的值border-radius如何,它都应该始终保持平滑的半椭圆。widthheight

通过一些小的更改,您可以将半椭圆垂直分成两半:

div {
  background-color: #80C5A0;
  width: 400px;
  height: 100px;
  border-radius: 100% / 50%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
<div></div>

于 2013-07-11T13:54:25.920 回答
5

http://jsfiddle.net/QGtzW/4/

.halfOval { 
    background-color: #a0C580;
    width: 400px;
    height: 100px;
    margin: 100px auto 0px;

    /* top-right top-left bottom-left bottom-right */
    /* or from 10.30 clockwise */
    border-radius: 50% 50% 0 0/ 100% 100% 0 0;
}
于 2013-07-11T13:55:48.720 回答
1

我们也可以使用 css3radial-gradient()来绘制这个形状:

.halfOval {
  background: radial-gradient(ellipse at 50% 100%, #a0C580 70%, transparent 70%);
}

.halfOval {
  background: radial-gradient(ellipse at 50% 100%, #a0C580 70%, transparent 70%);
  margin: 50px auto;
  height: 100px;
  width: 400px;
}
<div class="halfOval"></div>

于 2016-12-21T13:32:43.367 回答