作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我能够使用折线和路径绘制相同的东西,但是当它被渲染时,我看到了不同之处。这就是为什么这个问题——
<svg xmlns="http://www.w3.org/2000/svg">
<polyline points="200 100, 220 120, 280 120, 300 100" style="stroke:red; stroke-width:2px; fill:none" />
<path d="M200 100 L220 150 H280 L300 100" style="stroke:blue;stroke-width:2px; fill:none" />
</svg>
最佳答案
不,没有区别。
不过,您已经在 Canvas 的一半处绘制了一条线。如果您没有为 <svg>
指定高度元素默认为 300 x 150 像素。您的其中一条线在距 Canvas 顶部 150 像素处绘制,因此其宽度的一半被剪掉。
你总是可以让 Canvas 更大。
<svg height="200px" xmlns="http://www.w3.org/2000/svg">
<polyline points="200 100, 220 120, 280 120, 300 100" style="stroke:red; stroke-width:2px; fill:none" />
<path d="M200 100 L220 150 H280 L300 100" style="stroke:blue;stroke-width:2px; fill:none" />
</svg>
关于svg - 折线与路径 : Is there any difference,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49410859/
我是一名优秀的程序员,十分优秀!