10

是否有任何变体可以仅使用 CSS/CSS3绘制圆形线段?

顶部有一条虚线的圆圈。 线内的部分,即线段,为绿色阴影,不到圆的一半。 半径、段高度等也被标记。

我需要圆圈的那个绿色部分。

我正在尝试这个:

div {
  width: 86px;
  height: 22px;
  background-color: green;
  border-bottom-right-radius: 42px;
  border-bottom-left-radius: 42px;
}
<div></div>

但它看起来不像一个圆弧段。

4

3 回答 3

7

div 的宽度和高度应该相同才能产生一个圆圈。
例如:http: //jsfiddle.net/wGzMd/

这是CSS:

div{
position: absolute;
top: 50px;
left: 50px;
width:100px;
height:100px;
border: 1px solid green;
background: green;
border-radius: 360px;
} ​


编辑(用于段):

http://jsfiddle.net/wGzMd/3/

CSS:

div.outerClass{
 position: absolute;
 left: 50px;
 top: 50px;
 height: 25px;
 overflow: hidden;
}

div.innerClass{
 width:100px;
 height:100px;
 border: 1px solid green;
 border-radius: 360px;
}

HTML:

<div class="outerClass"><div class="innerClass"></div></div>
于 2012-04-25T10:45:15.333 回答
4

嘿检查到这个网站http://css-tricks.com/examples/ShapesOfCSS/

还有这个http://www.russellheimlich.com/blog/pure-css-shapes-triangles-delicious-logo-and-hearts/

和这个

http://www.css3shapes.com/

CSS

#oval {
width: 86px;
height: 22px;
background: green;
-moz-border-radius: 50px / 25px;
border-radius: 100px 100px 0 0 / 47px;
-webkit-border-radius: 100px 100px 0 0 / 47px;
}

HTML

<div id="oval"></div>

现场演示http://jsfiddle.net/carTT/

并像你一样在纯 CSS 中创建任何形状 ....................

于 2012-04-25T12:15:47.967 回答
3

半圈: http: //www.paulund.co.uk/how-to-create-different-shapes-in-css

 div {
 height:45px;
 width:90px;
 border-radius: 0 0 90px 90px;
 -moz-border-radius: 0 0 90px 90px;
 -webkit-border-radius: 0 0 90px 90px;
 background:green;}
于 2012-04-25T10:41:16.583 回答