SVG路径' d'属性的负坐标

时间:2017-10-20 15:44:13

标签: svg path coordinates

为什么d属性中的坐标对〜(-269000000)有限制? 关于它没有任何规范。



svg {
  display: block;
}
path {
  stroke-width: 1px;
  stroke: red;
  fill: none;
}

<html>
  <body>
    <svg height="1000" width="1000">
      <path d="M0,0L100,100L-268000000,100L100,100">           </path>
      <path d="M100,0L200,200L-269000000,200L200,200">           </path>
    </svg>
  </body>
</html>
&#13;
&#13;
&#13;

将第二条路径的坐标增加到-268000000,您将看到第二条路径。

转载于 Chrome 62,Safari 11和Firefox 56

0 个答案:

没有答案