17

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

在此处输入图像描述

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

4

2 回答 2

63

使用以下 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 小提琴演示

于 2013-05-09T20:25:37.380 回答
8

SVG 方法:

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

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

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

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

截屏:

显示弧线的图像

有用的资源:

工作示例:

svg {
  width: 33%;
  height: auto;
}
<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>

于 2017-02-24T13:37:31.817 回答