动画结束时查看过渡

发布于 2024-12-11 13:08:05 字数 691 浏览 0 评论 0原文

事情是这样的:

我的移动应用程序的主视图上有一个图像和一个按钮。

我通过按下按钮将动画应用于图像。效果很好。

问题:

我想添加一个视图转换,在动画完成后推送到下一个视图。

代码:

AS:

    protected function nextView()
    {
    navigator.pushView(View2);
    }

MXML:

    <s:Button id="Button" click="anim.play()"/> //anim.play() is in 
    //the declarations tag and is working as expected.

    <s:Image id="img" source="@Embed('assets/image.png')"/>

我尝试过: -

在动画调用后将 nextView() 添加到 click 方法

- 使用 按钮属性中的effectEnd="nextView()"

感谢您提供的任何帮助和见解。

Here's the deal:

I have an image and a button on my mobile app's homeview.

I apply an animation to the image by pressing the button. That works great.

PROBLEM:

I want to add a view transition that pushes to the next view after the animation completes.

CODE:

AS:

    protected function nextView()
    {
    navigator.pushView(View2);
    }

MXML:

    <s:Button id="Button" click="anim.play()"/> //anim.play() is in 
    //the declarations tag and is working as expected.

    <s:Image id="img" source="@Embed('assets/image.png')"/>

I've Tried:

-Adding nextView() to the click method after the animation call

-Using effectEnd="nextView()" in Button properties

Thank you for any help and insight you can provide.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏末 2024-12-18 13:08:05

effectEnd 似乎对我有用:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark"> 
    <fx:Declarations>
        <s:Move id="myEffect" xBy="100" target="{btn}" effectEnd="navigator.pushView(NextView)" />
    </fx:Declarations>

    <s:ViewNavigator id="navigator" width="100%" height="100%"/>

    <s:Button id="btn" label="play" click="myEffect.play()" />

</s:Application>

effectEnd appears to work for me:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark"> 
    <fx:Declarations>
        <s:Move id="myEffect" xBy="100" target="{btn}" effectEnd="navigator.pushView(NextView)" />
    </fx:Declarations>

    <s:ViewNavigator id="navigator" width="100%" height="100%"/>

    <s:Button id="btn" label="play" click="myEffect.play()" />

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