作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用纯 CSS 实现以下外观:
其中每个白色弧线都是不同的元素,例如跨度。我知道我们可以用 css 制作圆形,但如何将其变成弧形?
最佳答案
使用以下 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>
关于html - 如何用CSS3制作弧形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43840233/
这是我的脚本,我试图将图像插入到弧形 Canvas 中以仅替换黑色部分但没有解决方案:/这是我第一次在 Stack 上发帖,希望你能帮助我。也可以看到脚本的 fiddle :http://jsfidd
我的目标是设计一个看起来像这样的弧形 slider 我的模板结构如下 knob - 用户应该拖动以更改值的控件 track - 幻灯片的完整弧线 trackFill - 旋钮之前
是否有一种可靠的 CSS 方法可以将矩形 图像 扭曲/变形为圆形或弧形? 我知道如何拉伸(stretch)等等,但应用形状变形似乎是不可能的。这是正确的吗..?也许 SVG 变换..?理想情况下,这将
我正在构建自定义 View 。 它有 4 个弧。 我在 onDraw() 期间使用 RectF 形状绘制圆弧: // arcPaint is a Paint object initialized //
我想看看是否可以使用纯 css/jquery 实现以下效果。我已经知道如何将文本 flex 成一个圆圈,但这会 flex 整个元素,我不知道如何将文本的底部 flex 成一个圆圈。我想我想更多地扭曲文
我是一名优秀的程序员,十分优秀!