如何刷过不同的离子标签

Lew*_*ght 14 javascript navigation angularjs ionic-framework ionic

这里的第一篇文章,但真的很感激一些帮助或建议:

我目前正在使用离子框架构建一个项目,在构建功能版本后,我决定能够在选项卡之间滑动以显示应用程序的各个部分.

我使用离子提供的选项卡模板构建了应用程序,因此每个页面都通过ion-nav-view元素显示,并且是通过app.js文件中声明的状态更改调用的模板(见下文):

angular.module('starter', ['ionic', 'starter.controllers', 'starter.services'])

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if (window.cordova && window.cordova.plugins && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if (window.StatusBar) {
      // org.apache.cordova.statusbar required
      StatusBar.styleLightContent();
    }
  });
})

.config(function($stateProvider, $urlRouterProvider) {

  // setup an abstract state for the tabs directive
    .state('tab', {
    url: "/tab",
    abstract: true,
    templateUrl: "templates/tabs.html"
  })

  // Each tab has its own nav history stack:

  .state('tab.dash', {
    url: '/dash',
    views: {
      'tab-dash': {
        templateUrl: 'templates/tab-dash.html',

      }
    }
  })

  .state('tab.notes', {
      url: '/notes',
      views: {
        'tab-notes': {
          templateUrl: 'templates/tab-notes.html',
          controller: 'noteController'
        }
      }
    })

  .state('tab.todos', {
    url: '/todos',
    views: {
      'tab-todos': {
        templateUrl: 'templates/tab-todos.html',
        controller: 'todoController'
      }
    }
  })

  .state('tab.doodles', {
    url: '/doodles',
    views: {
      'tab-doodles': {
        templateUrl: 'templates/tab-doodles.html',
      }
    }
  })

  // if none of the above states are matched, use this as the fallback
  $urlRouterProvider.otherwise('/tab/dash');

});
Run Code Online (Sandbox Code Playgroud)

我想知道的是; 有没有办法可以让用户左右滑动以在不同的页面之间切换?

它甚至可能吗?如果是这样的话,是否还需要滚动?

我希望这是足够的细节,如果不是我会很乐意提供尽可能多的.谢谢收听!

Que*_*ars 22

是的,这是可能的.我玩了标签模板并得出以下结果:

<ion-content on-swipe-right="goBack()" on-swipe-left="goForward()">
Run Code Online (Sandbox Code Playgroud)

在每个控制器中,您将需要相应的功能:

.controller('MyCtrl', function ($scope, $ionicTabsDelegate) {

    $scope.goForward = function () {
        var selected = $ionicTabsDelegate.selectedIndex();
        if (selected != -1) {
            $ionicTabsDelegate.select(selected + 1);
        }
    }

    $scope.goBack = function () {
        var selected = $ionicTabsDelegate.selectedIndex();
        if (selected != -1 && selected != 0) {
            $ionicTabsDelegate.select(selected - 1);
        }
    }
})
Run Code Online (Sandbox Code Playgroud)

我不知道这是不是最好的做法而且非常强大.就像我说的那样,我只是在阅读完文档后玩了一会儿.

我希望我能告诉你它是如何工作的.

  • 但是当你这样做时,你不会得到那个```slide```动画. (5认同)
  • 另一种解决方案可能是使用Ionic Slide Box以及标签.可以使用幻灯片框(具有内置动画)创建页面导航,只需在页面底部添加标签作为视觉元素.单击每个选项卡将调用使用`$ ionicSlideBoxDelegate.slide()`转到正确的Slide的函数. (2认同)