如何在SVG clippath中获得两个弯角?

时间:2016-02-25 11:14:38

标签: css svg clip-path

有几天我遇到了一个问题: 我做了一个SVG剪辑路径,我想为它添加弯角。 当我在代码中添加'C'的'Curvetto'时,我只在右边有一个弯角。

这是我的代码:

<svg width="0" height="0">
    <defs>
      <clipPath id="myClip" clipPathUnits="objectBoundingBox">
        <path d="M0.23,0.1 C 0.77,0.1 0.77,0.1, 1,0, 1,1, 0,1,0.0,0.0z"/>
      </clipPath>
    </defs>
</svg>

Image of my clip path

如何让两个角弯曲?

0 个答案:

没有答案