如何用CSS3制作弧形?

时间:2013-05-09 20:20:53

标签: html css html5 css3 css-shapes

我正在尝试使用纯css实现以下外观:

enter image description here

每个白弧都是不同的元素,比如跨度。我知道我们可以用css制作圆形,但它怎么能变成弧形呢?

2 个答案:

答案 0 :(得分:57)

使用以下HTML:

<div id="arcs">
    <div>
        <div>
            <div>
                <div></div>
            </div>
        </div>
    </div>
</div>

CSS:

#arcs div {
    border: 2px solid #000; /* the 'strokes' of the arc */
    display: inline-block;
    min-width: 4em; /* the width of the innermost element */
    min-height: 4em; /* the height of the innermost element */
    padding: 0.5em; /* the spacing between each arc */
    border-radius: 50%; /* for making the elements 'round' */
    border-top-color: transparent; /* hiding the top border */
    border-bottom-color: transparent;
}

#arcs div {
  border: 2px solid #000;
  /* the 'strokes' of the arc */
  display: inline-block;
  min-width: 4em;
  /* the width of the innermost element */
  min-height: 4em;
  /* the height of the innermost element */
  padding: 0.5em;
  /* the spacing between each arc */
  border-radius: 50%;
  /* for making the elements 'round' */
  border-top-color: transparent;
  /* hiding the top border */
  border-bottom-color: transparent;
}
<div id="arcs">
  <div>
    <div>
      <div>
        <div></div>
      </div>
    </div>
  </div>
</div>

JS Fiddle demo

答案 1 :(得分:6)

SVG方法:

我建议您使用SVG绘制这样的形状:

在下面的示例中,我使用SVG的path元素绘制弧线。此元素采用单个属性d来描述形状结构。 d属性需要一些命令和相应的必要参数。

我只使用了2个路径命令:

  • M命令用于将笔移动到特定点。此命令需要2个参数xy,通常我们的路径以此命令开头。它基本上定义了我们绘图的起点。
  • A命令用于绘制曲线和弧线。此命令需要7个参数来绘制弧/曲线。该命令的详细说明是Here

<强>截图:

Image Showing arcs

有用的资源:

工作示例:

&#13;
&#13;
svg {
  width: 33%;
  height: auto;
}
&#13;
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">

  <defs>
    <g id="arcs" fill="none" stroke="#fcfcfc">
      <path d="M80,80 A100,100,0, 0,0 80,220" stroke-width="4" />
      <path d="M90,90 A85,85,0, 0,0 90,210" stroke-width="3.5" />
      <path d="M100,100 A70,70,0, 0,0 100,200" stroke-width="3" />
      <path d="M110,110 A55,55,0, 0,0 110,190" stroke-width="2.5" />
    </g>
  </defs>
  
  <rect x="0" y="0" width="300" height="300" fill="#373737" />

  <use xlink:href="#arcs" />
  <use xlink:href="#arcs" transform="translate(300,300) rotate(180)" />
  
</svg>
&#13;
&#13;
&#13;