Flex 移动应用程序中的补间库

发布于 2024-12-17 00:13:04 字数 92 浏览 2 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热情消退 2024-12-24 00:13:04

使用 TweenLite 库,您可以使用帧数或时间长度来控制补间的长度。

在 tweenProperties 对象中,使用 useFrames 关键字来指定补间时间跨度是指定帧还是秒。

“to”或“from”补间的第二个参数指定长度。

因此,创建一个补间超过 10 帧的 alpha 补间,它应该如下所示:

tweenProperties = new Object();
tweenProperties.alpha = yourNewAlphaHere;
tweenProperties.useFrames = true;

TweenLite.to(myObjectToTween, 10,tweenProperties);

要创建一个补间超过 10 秒的 alpha 补间,它会是这样的:

tweenProperties = new Object();
tweenProperties.alpha = yourNewAlphaHere;
tweenProperties.useFrames = false;

TweenLite.to(myObjectToTween, 10,tweenProperties);

根据您正在做的事情,您可能需要考虑使用 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:

tweenProperties = new Object();
tweenProperties.alpha = yourNewAlphaHere;
tweenProperties.useFrames = true;

TweenLite.to(myObjectToTween, 10,tweenProperties);

To create an alpha tween that tweens over 10 seconds, it would be like this:

tweenProperties = new Object();
tweenProperties.alpha = yourNewAlphaHere;
tweenProperties.useFrames = false;

TweenLite.to(myObjectToTween, 10,tweenProperties);

Depending on what you're doing, you may want to consider TweenNano for mobile apps, since it is the smallest footprint.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文