html - 如何在 SVG 中制作 "bent rectangle"?

标签 html css svg

我有一个正在进行的元素,它要求我使用按钮制作一个圆形导航,这些按钮看起来像下图钢铁侠周围的栏。我可以绘制简单的形状并按照教程很好地学习,但我不知道如何绘制这些具有曲线形状的条形,如下图所示。

我已经包含了一个剪辑路径示例,但我认为 SVG 是我需要做的。

HTML

<div class="button"></div>

CSS

.button {
    background: radial-gradient(circle at 50% 160%,transparent 45%,red 44.5%,red 85%,transparent 85%);
        -webkit-clip-path: polygon(5% 0, 100% 0, 65% 90%, 35% 90%);
        clip-path: polygon(20% 0, 80% 0, 65% 90%, 35% 90%);
}

enter image description here

最佳答案

首先,我创建了一个段(路径)。然后我通过使用旋转它来重复使用它。

const SVG_NS = 'http://www.w3.org/2000/svg';
const SVG_XLINK = "http://www.w3.org/1999/xlink";
const deg = 180 / Math.PI;
let R = 50;// the outer radius
let r = 35;// the inner radius
let A = 2*Math.PI/7;// the angle for the segment + space
let a = 2*A/3; // the angle for the segment


let path = document.createElementNS(SVG_NS, 'path');
let p1 = {x:0,y:-R}
let p2 = {
  x : R*Math.cos(a - Math.PI/2),
  y : R*Math.sin(a - Math.PI/2)
}
let p3 = {
  x : r*Math.cos(a - Math.PI/2),
  y : r*Math.sin(a - Math.PI/2)
}
let p4 = {
  x : 0,
  y : -r
}
let d = `M${p1.x},${p1.y}
         A${R},${R} 0 0,1,${p2.x},${p2.y}
         L${p3.x},${p3.y}
         A${r},${r} 0 0,0,${p4.x},${p4.y}
         L${p1.x},${p1.y}Z
`;
path.setAttributeNS(null, "d", d);
path.setAttributeNS(null, "id", "arc");
defs.appendChild(path);




for(let i = 0; i < 7; i++){
 let use = document.createElementNS(SVG_NS, 'use');
  use.setAttributeNS(SVG_XLINK, "xlink:href", "#arc")
  use.setAttributeNS(null, "fill", "gold");
  use.setAttributeNS(null, "transform", `rotate(${i*A*deg})`);
  svg.appendChild(use); 
  
}
<svg id="svg" viewBox= "-100 -55 200 110">
  
  <defs id="defs"></defs>
  
  <circle r="25" fill="gold" />
  
  
</svg>

或者更简单:这次我使用 stroke-dasharray 并计算笔划和间隙的大小

const SVG_NS = 'http://www.w3.org/2000/svg';
let R = 40;

let perimeter = 2*Math.PI*R
let dash = .7*perimeter/7;
let gap = .3*perimeter/7;


let dasharray = document.createElementNS(SVG_NS, 'circle');
dasharray.setAttributeNS(null, "r", R);
dasharray.setAttributeNS(null, "stroke-dasharray", `${dash}, ${gap}`);

svg.appendChild(dasharray);
circle{stroke-width:20px; stroke:black;fill:none;}
<svg id="svg" viewBox= "-100 -55 200 110"></svg>

关于html - 如何在 SVG 中制作 "bent rectangle"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52727252/

相关文章:

javascript - 如何在 HTML 中模糊图像的特定区域?

css - 样式未从后端解析

html - 当 div overflow-x 内部 div 的位置粘性不起作用

css - Bootstrap 分页并且在 768px 下没有响应

html - 在同一行对齐元素(动态拉伸(stretch)整个布局)

html - 使用 float :left 时 CSS 背景消失

css - 如何通过 CSS 将阴影过滤器应用于 SVG 特定元素/路径

javascript - 每 10 秒执行一次 SVG html 代码

html - 如何制作一个唯一的图像按钮?

HTML5 语音输入和谷歌翻译文本到语音,Chrome 中的问题