使用 S:move MXML 移动形状
我正在尝试用矩形创建动画。 我希望矩形从 x=150 循环移动到 x=50,然后返回 150,依此类推。
目前我只能将矩形向前移动,并在移动 100px 后停止。
有什么想法如何创建循环吗?
这就是我想出的办法。我知道的不多。
<s:Move id="moves"
target="{rect2}"
xBy="-150"
duration="1000"
easer="{sineEasing}"/>
I'm trying to create an animation with an rectangle.
I want the rectangle to move in a loop from x=150 to x=50 and back to 150 and so on.
At the moment I can only move the rectangle forward and it stops after it moved 100px.
Any ideas how to create the loop ?
This is what I have come up with. not much Iknow.
<s:Move id="moves"
target="{rect2}"
xBy="-150"
duration="1000"
easer="{sineEasing}"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的事情:
正如您所看到的,这里的主要思想是使用
Sequence
效果强制两个Move
动画连续执行,然后循环这个Sequence通过将其
效果。repeatCount
属性设置为0
来实现Try with something like this:
As you can see the main idea here is using
Sequence
effect to force twoMove
animations to execute in a row and then looping thisSequence
effect by setting itsrepeatCount
property to0
.我建议使用 tweenlite 动画库,而不是使用 Flex 或 MXML 的内置动画选项进行动画。 Tweenlite 有更多选项并且非常易于使用。
通过下面的代码,您可以看到该库是如何工作的。该函数使用 Sine.easeIn 缓动,在 1 秒内将对象矩形移动到位置 65,117。
如果您随后使用一些附加参数,则可以创建一个循环,如下所示:
I would suggest using tweenlite animation library and not using the built-in animation options of Flex nor MXML for animation. Tweenlite has a lot more options and is very easy to use.
With the below code, you can see how the library works. The function moves your object rect to the position 65,117 with Sine.easeIn easing over a period of 1 second.
If you then use some additional parameters, you can create a loop, like this: