Flex 移动应用程序中的补间库
我想在 Flex 移动应用程序中补间图片的 Alpha。我试过了 但它跑得太快了。有没有优化的方法,或者在 Objective C 中链接 代码 ?
谢谢
I want to tween the alpha of a picture in a flex mobile app. I've tried tweenlite
but it runs too fast. Is there any optimised way of doing it, or linking in objective C
code ?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 TweenLite 库,您可以使用帧数或时间长度来控制补间的长度。
在 tweenProperties 对象中,使用 useFrames 关键字来指定补间时间跨度是指定帧还是秒。
“to”或“from”补间的第二个参数指定长度。
因此,创建一个补间超过 10 帧的 alpha 补间,它应该如下所示:
要创建一个补间超过 10 秒的 alpha 补间,它会是这样的:
根据您正在做的事情,您可能需要考虑使用 TweenNano移动应用程序,因为它占用空间最小。
With the TweenLite library you can control the length of the tween, either using the number of frames or using a time length.
In your tweenProperties object, use the useFrames keyword to specify whether the tween time span specifies frames or seconds.
The second parameter of the 'to' or 'from' tweens specifies the length.
So, create an alpha tween that tweens over 10 frames, it should look like this:
To create an alpha tween that tweens over 10 seconds, it would be like this:
Depending on what you're doing, you may want to consider TweenNano for mobile apps, since it is the smallest footprint.