美文网首页
用svg制作动画

用svg制作动画

作者: 郑伟的菜园子 | 来源:发表于2016-01-07 02:52 被阅读62次
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <svg>
        <rect x="10" y="10" width="50" height="30">
            <animate attributeType="XML"
            attributeName="width"
            to="100"
            fill="freeze"
            dur="1s" />
        </rect>
    </svg>
</body>
</html>

相关文章

网友评论

      本文标题:用svg制作动画

      本文链接:https://www.haomeiwen.com/subject/wnrfkttx.html