ionic 浮动框


$ionicPopover

$ionicPopover 是一个可以浮在app内容上的一个视图框。

可以实现以下功能点:

  • 在当前页面显示更多信息。
  • 选择一些工具或配置。
  • 在页面提供一个操作列表。

方法


fromTemplate(templateString, options)
或
fromTemplateUrl(templateUrl, options)

参数说明:

templateString: 模板字符串。

templateUrl: 载入的模板 URL。

options: 初始化选项。

实例

HTML 代码部分

<p> <button ng-click="openPopover($event)">打开浮动框</button> </p> <script id="my-popover.html" type="text/ng-template"> <ion-popover-view> <ion-header-bar> <h1 class="title">我的浮动框标题</h1> </ion-header-bar> <ion-content> Hello! </ion-content> </ion-popover-view> </script>

fromTemplateUrl 方法

angular.module(&qpos;ionicApp&qpos;, [&qpos;ionic&qpos;]) .controller( &qpos;AppCtrl&qpos;,[&qpos;$scope&qpos;,&qpos;$ionicPopover&qpos;,&qpos;$timeout&qpos;,function($scope,$ionicPopover,$timeout){ $scope.popover = $ionicPopover.fromTemplateUrl(&qpos;my-popover.html&qpos;, { scope: $scope }); // .fromTemplateUrl() 方法 $ionicPopover.fromTemplateUrl(&qpos;my-popover.html&qpos;, { scope: $scope }).then(function(popover) { $scope.popover = popover; }); $scope.openPopover = function($event) { $scope.popover.show($event); }; $scope.closePopover = function() { $scope.popover.hide(); }; // 清除浮动框 $scope.$on(&qpos;$destroy&qpos;, function() { $scope.popover.remove(); }); // 在隐藏浮动框后执行 $scope.$on(&qpos;popover.hidden&qpos;, function() { // 执行代码 }); // 移除浮动框后执行 $scope.$on(&qpos;popover.removed&qpos;, function() { // 执行代码 }); }])

尝试一下 »

我们也可以把模板当作一个字符串,使用 .fromTemplate() 方法来实现弹框:

fromTemplate 方法

angular.module(&qpos;ionicApp&qpos;, [&qpos;ionic&qpos;]) .controller( &qpos;AppCtrl&qpos;,[&qpos;$scope&qpos;,&qpos;$ionicPopover&qpos;,&qpos;$timeout&qpos;,function($scope,$ionicPopover,$timeout){ $scope.popover = $ionicPopover.fromTemplateUrl(&qpos;my-popover.html&qpos;, { scope: $scope }); // .fromTemplate() 方法 var template = &qpos;<ion-popover-view><ion-header-bar> <h1 class="title">我的浮动框标题</h1> </ion-header-bar> <ion-content> Hello! </ion-content></ion-popover-view>&qpos;; $scope.popover = $ionicPopover.fromTemplate(template, { scope: $scope }); $scope.openPopover = function($event) { $scope.popover.show($event); }; $scope.closePopover = function() { $scope.popover.hide(); }; // 清除浮动框 $scope.$on(&qpos;$destroy&qpos;, function() { $scope.popover.remove(); }); // 在隐藏浮动框后执行 $scope.$on(&qpos;popover.hidden&qpos;, function() { // 执行代码 }); // 移除浮动框后执行 $scope.$on(&qpos;popover.removed&qpos;, function() { // 执行代码 }); }])

尝试一下 »
友情链接

搜外友链  |   维家  |   风淋室 >  |   明星排行  |   建筑规范文档  |   惠州保安公司  |   环保空调  |   咒术回战




意见反馈 ||  关于我们 ||  用户协议 ||  隐私保护 ||  商务合作

Copyright © 2020-2022 中华文学苑(华文苑) 京ICP备17037819号

Email:artype@163.com      QQ:262989474

加入华文苑qq群

Android下载