我用 SVG 线/路径动画创建了简单的 MVC3 应用程序。请参考下面的代码片段。
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<clipPath id="curtainClip">
<rect id="clipRect" x="0" y="0" width="100" height="100"/>
</clipPath>
</defs>
<animate xlink:href="#clipRect"
attributeName="width"
dur="15s"
from="0"
to="100" />
<path clip-path="url(#curtainClip)" stroke="red" d="M 0 0 L 100 100"/>
</svg>
它在 JS-fiddle /JS- bin 中工作。这意味着动画路径将是结果。
请参考以下链接。
示例链接:
动画无法在 IE 浏览器中运行。(10,9)
谢谢,
湿婆