Ionic中用$state.go()跳轉頁面時也可以有動畫效果

來源:互聯網
上載者:User

在做Ionic項目時,在HTML標籤實現有動畫效果的切換頁面很簡單,只要在標籤中加入nav-direction="back"或nav-direction="forward"就可以實現了。但是用$state.go()怎麼實現動畫效果呢。其實也很簡單,只要在$state.go()後面加上 $ionicViewSwitcher.nextDirection("back")或 $ionicViewSwitcher.nextDirection("forwoard")就可以實現跟加nav-direction一樣的效果了,記得要注入ionicViewSwitcher服務。如果想要在Android手機的返回鍵也要實現這個效果怎麼辦呢。

首先要在.run方法中註冊返回鍵時間,然後在$ionicHistory.goBack()後加上$ionicViewSwitcher.nextDirection("back")或 $ionicViewSwitcher.nextDirection("forwoard")即可

$ionicPlatform.registerBackButtonAction(function (e) {


            e.preventDefault();


            function showConfirm() {
                var confirmPopup = $ionicPopup.confirm({
                    title: '<strong>退出應用?</strong>',
                    template: '你確定要退出應用嗎?',
                    okText: '退出',
                    cancelText: '取消'
                });


                confirmPopup.then(function (res) {
                    if (res) {
                        ionic.Platform.exitApp();
                    } else {
                        // Don't close
                    }
                });
            }


            // Is there a page to go back to?
            if ($location.path() == '/tab/dash') {
                showConfirm();
            } else if ($ionicHistory.backView()) {


                // Go back in history
                $ionicHistory.goBack();
                $ionicViewSwitcher.nextDirection("back");
            } else {
                // This is the last page: Show confirmation popup
                showConfirm();
            }


            return false;
        }, 101);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.