【2016.09.08】【ionic 浮动框】

090648_X1MW_2650892.png

090706_kqBk_2650892.png

<!DOCTYPE html>
<html ng-app="myApp">
<head>
  <meta charset="utf-8">
  <title>Todo</title>
  <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

  <link href="lib/ionic/css/ionic.css" rel="stylesheet">

  <script src="lib/ionic/js/ionic.bundle.js"></script>
  <script src="js/app.js"></script>

  <!-- 在使用 Cordova/PhoneGap 创建的 APP 中包含的文件,由 Cordova/PhoneGap 提供,(开发过程中显示 404) -->
  <script src="cordova.js"></script>
  <script>
    var app = angular.module("myApp",["ionic"]);
    app.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.Keyboard) {
            cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
          }
          if(window.StatusBar) {
            StatusBar.styleDefault();
          }
        });
      });

    app.controller('myCtrl01',["$scope","$ionicPopover", function($scope,$ionicPopover) {
      $scope.name = "宋玉清";
      $scope.popover = $ionicPopover.fromTemplateUrl("FloatFrame.html",{
        scope : $scope
      });

      // .fromTemplateUrl() 方法
      $ionicPopover.fromTemplateUrl('FloatFrame.html', {
        scope: $scope
      }).then(function(popover) {
        $scope.popover = popover;
      });

      $scope.openPopover = function($event) {
        $scope.popover.show($event);
      };
      // 在隐藏浮动框后执行
      $scope.$on('popover.hidden', function() {
        // 执行代码
        console.log("浮动框已被隐藏");
      });
    }]);

  </script>

</head>
<body  ng-controller="myCtrl01">
<ion-header-bar class="bar-positive">
  <h1 class="title">ionic 浮动框</h1>
</ion-header-bar>

<ion-content class="padding content has-header">
  <button class="button button-assertive" ng-click="openPopover($event)">显示浮动框</button>
</ion-content>



<script id="FloatFrame.html" type="text/ng-template">
  <ion-popover-view>
    <ion-header-bar class="bar-assertive">
      <h2 class="title">这是浮动框的标题</h2>
      <button class="button button-clear" ng-click="popover.hide()">取消</button>
    </ion-header-bar>
    <ion-content class="content has-header padding">
      <ion-list>
        <label class="item item-input">
          <span class="input-label">姓名:</span>
          <input type="text">
        </label>
        <label class="item item-input">
          <span class="input-label">年龄:</span>
          <input type="text">
        </label>
        <button class="button button-block button-positive">提交</button>
      </ion-list>
    </ion-content>
  </ion-popover-view>
</script>
</body>
</html>

转载于:https://my.oschina.net/YongfengHe/blog/744039

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值