与 raphael 一起制作路径动画
我仍在试图弄清楚拉斐尔,并被一些基本的动画所困扰。看看这里: http://jsfiddle.net/d7d3Z/
它很简单:两条动画路径地方。但我想要的是它看起来像一条线一样“绘制”,而不是一起开始。
我如何订购动画?
I'm still trying to figure out Raphael and am stuck with some basic animation. have a look here: http://jsfiddle.net/d7d3Z/
it's simple enough: two paths that animate into place. What I want though is for it to appear to 'draw' this like a single line, rather than both starting together.
How can I order the animations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在第一个动画结束后调用第二个动画。
http://jsfiddle.net/d7d3Z/1/
You can call the second animation after the first one is over.
http://jsfiddle.net/d7d3Z/1/
使用 animate 的回调:http://jsfiddle.net/pPwRP/
这将为您提供的是,它将在第一个动画完成后执行回调。
对于懒惰点击的人 - 这是代码
Use a callback for animate: http://jsfiddle.net/pPwRP/
What this will give you is that it will execute the callback after the first animation has finished.
For the lazy to click - here is the code