jjzjj

ios - 如何在 ionic framework latest beta 14 上同时使用选项卡和滑动菜单?

coder 2024-01-24 原文

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

比如这个:

http://tinyurl.com/sflowmotto1

它与 14 beta 一起工作,但有一个问题。我的客户不想要滑动底部标签。

这个在 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>Polar 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

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

最佳答案

根据测试版 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 framework latest beta 14 上同时使用选项卡和滑动菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28563509/

有关ios - 如何在 ionic framework latest beta 14 上同时使用选项卡和滑动菜单?的更多相关文章

  1. ruby - 如何使用 Nokogiri 的 xpath 和 at_xpath 方法 - 2

    我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div

  2. ruby - 使用 RubyZip 生成 ZIP 文件时设置压缩级别 - 2

    我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看ruby​​zip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d

  3. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  4. ruby-on-rails - 使用 Ruby on Rails 进行自动化测试 - 最佳实践 - 2

    很好奇,就使用ruby​​onrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提

  5. ruby - 在 Ruby 中使用匿名模块 - 2

    假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于

  6. ruby - 如何在 Ruby 中顺序创建 PI - 2

    出于纯粹的兴趣,我很好奇如何按顺序创建PI,而不是在过程结果之后生成数字,而是让数字在过程本身生成时显示。如果是这种情况,那么数字可以自行产生,我可以对以前看到的数字实现垃圾收集,从而创建一个无限系列。结果只是在Pi系列之后每秒生成一个数字。这是我通过互联网筛选的结果:这是流行的计算机友好算法,类机器算法:defarccot(x,unity)xpow=unity/xn=1sign=1sum=0loopdoterm=xpow/nbreakifterm==0sum+=sign*(xpow/n)xpow/=x*xn+=2sign=-signendsumenddefcalc_pi(digits

  7. ruby - 使用 ruby​​ 和 savon 的 SOAP 服务 - 2

    我正在尝试使用ruby​​和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我

  8. python - 如何使用 Ruby 或 Python 创建一系列高音调和低音调的蜂鸣声? - 2

    关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。

  9. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  10. ruby - 使用 ruby​​ 将 HTML 转换为纯文本并维护结构/格式 - 2

    我想将html转换为纯文本。不过,我不想只删除标签,我想智能地保留尽可能多的格式。为插入换行符标签,检测段落并格式化它们等。输入非常简单,通常是格式良好的html(不是整个文档,只是一堆内容,通常没有anchor或图像)。我可以将几个正则表达式放在一起,让我达到80%,但我认为可能有一些现有的解决方案更智能。 最佳答案 首先,不要尝试为此使用正则表达式。很有可能你会想出一个脆弱/脆弱的解决方案,它会随着HTML的变化而崩溃,或者很难管理和维护。您可以使用Nokogiri快速解析HTML并提取文本:require'nokogiri'h

随机推荐