上面的效果是来源于
<style>
path {
fill: none;
stroke-width: 1;
stroke: #1e80ff;
stroke-dasharray: 100;
stroke-dashoffset: 100;
}
</style>
<svg
version="1.0"
id="图层_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
width="800px"
height="800px"
viewBox="0 0 800 800"
enable-background="new 0 0 800 800"
xml:space="preserve"
>
<g>
<path
pathLength="100"
fill-rule="evenodd"
clip-rule="evenodd"
d="M325,494c3.831,14.172,4.244,37.086,4,52c-8.301-12.415-11.938-28.129-24-37
c-15.257-11.222-43.515-10.192-59,2c-26.489,20.855-31.711,84.077-9,112c12.845,15.792,45.979,25.599,70,11
c4.981-3.027,9.968-7.632,14-12c3.474-3.765,5.564-11.363,12-11c-12.388,26.67-34.098,41.462-66,40c-42.4-1.942-69-33.245-69-76
c0-53.923,46.361-94.266,99-77c3.991,1.31,11.536,6.29,16,6C321.018,503.479,319.072,498.002,325,494z"
>
<animate
attributeType="XML"
begin="0"
attributeName="stroke-dashoffset"
to="0"
dur="2"
fill="freeze"
repeatCount="1"
/>
</path>
</g>
</svg>
虽然有动画效果,但是动画的起始点和动画方向不是想要的,如何修改 path 路径的起始点和方向,有相关的工具实现吗? 目前路径是通过 Adobe Illustrator 工具生成的,但是不清楚如何设置 Adobe Illustrator 来改变路径的起始点。