• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何在 ionic 框架最新 beta 14 上同时使用选项卡和滑动菜单?

[复制链接]
菜鸟教程小白 发表于 2022-12-13 05:24:15 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在寻找同时使用选项卡和滑动菜单的 ionic 应用程序的示例。是的,我遇到了几个示例,但其中大多数都已过时且无法使用最新的测试版。

比如这个:

http://tinyurl.com/sflowmotto1

它适用于 14 测试版,但存在问题。我的客户不想滑动底部标签。

这个在 0.9.26 但不是 14 上工作得很好:

http://tinyurl.com/sflowmotto2

<html ng-app="ionicApp">

<title>Tabs and Slide-out menu Example</title>

<link href="http://code.ionicframework.com/0.9.26/css/ionic.min.css" rel="stylesheet">
<script src="http://code.ionicframework.com/0.9.26/js/ionic.bundle.min.js"></script>

<div ng-controller="MainCtrl">
  <ion-nav-view animation="slide-left-right"></ion-nav-view>
</div>

<script id="menu.html" type="text/ng-template">
  <ion-side-menus>
    <ion-pane ion-side-menu-content>
         <ion-nav-bar animation="nav-title-slide-ios7" 
         type="bar-positive" 
         left-buttons="leftButtons"
         back-button-type="button-icon" 
         back-button-icon="ion-arrow-left-c"></ion-nav-bar>
      <ion-nav-view name="menu-content"></ion-nav-view>
    </ion-pane> 
    <ion-side-menu side="left">
      <ion-content>
        <ul class="list">
          <a href="#/main/tab/home" class="item" ng-click="mainCtrl.showFeature = false">Home</a>
          <a href="#/main/tab/about" class="item"ng-click="mainCtrl.showFeature = false">About</a>
          <a href="#/main/tab/contact" class="item"ng-click="mainCtrl.showFeature = fakse">Contact</a>
          <a href="#/main/tab/feature" class="item" ng-click="mainCtrl.showFeature = true">Feature</a>
        </ul>
      </ion-content>
    </ion-side-menu>
  </ion-side-menus>    
</script>

<script id="tabs.html" type="text/ng-template">
  <ion-tabs tabs-style="tabs-icon-top" tabs-type="tabs-positive">

    <ion-tab title="Home" icon="ion-home" href="#/main/tab/home">
      <ion-nav-view name="home-tab"></ion-nav-view>
    </ion-tab>

    <ion-tab title="About" icon="ion-ios7-information" href="#/main/tab/about">
      <ion-nav-view name="about-tab"></ion-nav-view>
    </ion-tab>

    <ion-tab title="Contact" icon="ion-ios7-world" ui-sref="main.tabs.contact">
      <ion-nav-view name="contact-tab"></ion-nav-view>
    </ion-tab>

    <ion-tab title="Feature" icon="ion-ios7-world" ui-sref="main.tabs.feature" ng-if="mainCtrl.showFeature">
      <ion-nav-view name="feature-tab"></ion-nav-view>
    </ion-tab>

  </ion-tabs>
</script>

<script id="home.html" type="text/ng-template">
  <ion-view title="'Home'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true" >
      <p>Example of Ionic tabs. Navigate to each tab, and
      navigate to child views of each tab and notice how
      each tab has its own navigation history.</p>
      <p>
        <a class="button icon icon-right ion-chevron-right" href="#/main/tab/facts">Scientific Facts</a>
      </p>
      <p>This next button navigates to a view that does not have a tab or present
    </ion-content>
  </ion-view>
</script>

<script id="facts.html" type="text/ng-template" >
  <ion-view title="'Facts'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      <p>Banging your head against a wall uses 150 calories an hour.</p>
      <p>Dogs have four toes on their hind feet, and five on their front feet.</p>
      <p>The ant can lift 50 times its own weight, can pull 30 times its own weight and always falls over on its right side when intoxicated.</p>
      <p>A cockroach will live nine days without it's head, before it starves to death.</p>
      <p>olar bears are left handed.</p>
      <p>
        <a class="button icon ion-home" href="#/main/tab/home"> Home</a>
        <a class="button icon icon-right ion-chevron-right" href="#/main/tab/facts2">More Facts</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="facts2.html" type="text/ng-template" >
  <ion-view title="'Also Factual'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      <p>111,111,111 x 111,111,111 = 12,345,678,987,654,321</p>
      <p>1 in every 4 Americans has appeared on T.V.</p>
      <p>11% of the world is left-handed.</p>
      <p>1 in 8 Americans has worked at a McDonalds restaurant.</p>
      <p>$283,200 is the absolute highest amount of money you can win on Jeopardy.</p>
      <p>101 Dalmatians, Peter Pan, Lady and the Tramp, and Mulan are the only Disney cartoons where both parents are present and don't die throughout the movie.</p>
      <p>
        <a class="button icon ion-home" href="#/main/tab/home"> Home</a>
        <a class="button icon ion-chevron-left" href="#/main/tab/facts"> Scientific Facts</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="about.html" type="text/ng-template">
  <ion-view title="'About'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      <h3>Create hybrid mobile apps with the web technologies you love.</h3>
      <p>Free and open source, Ionic offers a library of mobile-optimized HTML, CSS and JS components for building highly interactive apps.</p>
      <p>Built with Sass and optimized for AngularJS.</p>
      <p>
        <a class="button icon icon-right ion-chevron-right" href="#/main/tab/navstack">Tabs Nav Stack</a>
      </p>
    </ion-content>
  </ion-view>
</script>

<script id="nav-stack.html" type="text/ng-template">
  <ion-view title="'Tab Nav Stack'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      <p><img src="http://ionicframework.com/img/diagrams/tabs-nav-stack.png" style="width:100%"></p>
    </ion-content>
  </ion-view>
</script>

<script id="contact.html" type="text/ng-template">
  <ion-view title="'Contact'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      <p>@IonicFramework</p>
      <p>@DriftyCo</p>
    </ion-content>
  </ion-view>
</script>

<script id="feature.html" type="text/ng-template">
  <ion-view title="'Feature'" left-buttons="leftButtons">
    <ion-content has-header="true" padding="true">
      This is a feature pane that does not require a visible tab button.
    </ion-content>
  </ion-view>
</script>

body {
  cursor: url('http://ionicframework.com/img/finger.png'), auto;
}


angular.module('ionicApp', ['ionic'])

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

  $stateProvider

    .state('main', {
      url: "/main",
      abstract: true,
      templateUrl: "menu.html"
    })

    .state('main.tabs', {
      url: "/tab",
      abstract: true,
      views: {
        'menu-content': {
          templateUrl: "tabs.html",
        }
      }
    })
    .state('main.tabs.home', {
      url: "/home",
      views: {
        'home-tab': {
          templateUrl: "home.html",
          controller: 'HomeTabCtrl'
        }
      }
    })
    .state('main.tabs.facts', {
      url: "/facts",
      views: {
        'home-tab': {
          templateUrl: "facts.html"
        }
      }
    })
    .state('main.tabs.facts2', {
      url: "/facts2",
      views: {
        'home-tab': {
          templateUrl: "facts2.html"
        }
      }
    })
    .state('main.tabs.about', {
      url: "/about",
      views: {
        'about-tab': {
          templateUrl: "about.html"
        }
      }
    })

    .state('main.tabs.feature', {
      url: "/feature",
      views: {
        'feature-tab': {
          templateUrl: "feature.html"
        }
      }
    })

  .state('main.tabs.navstack', {
      url: "/navstack",
      views: {
        'about-tab': {
          templateUrl: "nav-stack.html"
        }
      }
    })
    .state('main.tabs.contact', {
      url: "/contact",
      views: {
        'contact-tab': {
          templateUrl: "contact.html"
        }
      }
    })
    .state('main.feature', {
      url: "/feature",
      views: {
        'menu-content': {
          templateUrl: "feature.html"
        }
      }
    });


   $urlRouterProvider.otherwise("/main/tab/home");

})

.controller('HomeTabCtrl', function($scope) {
  console.log('HomeTabCtrl');
})

.controller('MainCtrl', function($scope, $ionicSideMenuDelegate) {

  $scope.mainCtrl = {};
  $scope.leftButtons = [{
    type: 'button-icon button-clear ion-navicon',
    tap: function(e) {
      $ionicSideMenuDelegate.toggleLeft($scope.$$childHead);
    }
  }];

  $scope.mainCtrl.showFeature = false;

});

我很好奇为什么第二个示例不适用于 beta 14?

这里是损坏版本的链接,一些图标和动画丢失了:

http://codepen.io/anon/pen/RNMNQb

编辑:由于新版本的新变化,问题与以前的问题不同。



Best Answer-推荐答案


根据 beta 14 https://github.com/driftyco/ionic/releases

Breaking Changes:

Animation CSS: The CSS for view transitions have changed. This is a breaking change only if Ionic apps had customized Ionic’s animation CSS. Additionally, all keyframe animations were removed since they weren't being used. (20Kb saved!)

此代码示例已被弃用:

<ion-nav-view animation="slide-left-right">

我仍在寻找解决方案,我一直在寻找 10 小时,我希望我的标签能够动画

关于ios - 如何在 ionic 框架最新 beta 14 上同时使用选项卡和滑动菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28563509/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap