ionic 載入動作
$ionicLoading 是 ionic 預設的一個載入互動效果。裡面的內容也是可以在模板裡面修改。
用法
angular.module('LoadingApp', ['ionic']) .controller('LoadingCtrl', function($scope, $ionicLoading) { $scope.show = function() { $ionicLoading.show({ template: 'Loading...' }); }; $scope.hide = function(){ $ionicLoading.hide(); }; });
方法
顯示一個載入效果。
show(opts)
參數 | 類型 | #詳情 |
---|---|---|
opts | object | loading指示器的選項。可用屬性:
|
#隱藏一個載入效果。
hide()
API
屬性 | #類型 | 詳情 |
---|---|---|
delegate-handle (可選) |
| #該句柄定義帶有 |
show-delete (可選) | 布林值 | #清單項目的刪除按鈕目前是顯示還是隱藏。 |
show-reorder (可選) | 布林值 | #清單項目的排序按鈕目前是顯示還是隱藏。 |
can-swipe (可選) | 布林值 | #清單項目是否被允許滑動顯示選項按鈕。預設:true。 |
實例
HTML 程式碼:
<html ng-app="ionicApp"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title>Ionic Modal</title> <link href="http://www.php.cn/static/ionic/css/ionic.min.css" rel="stylesheet"> <script src="http://www.php.cn/static/ionic/js/ionic.bundle.min.js"></script> </head> <body ng-controller="AppCtrl"> <ion-view title="Home"> <ion-header-bar> <h1 class="title">The Stooges</h1> </ion-header-bar> <ion-content has-header="true"> <ion-list> <ion-item ng-repeat="stooge in stooges" href="#">{{stooge.name}}</ion-item> </ion-list> </ion-content> </ion-view> </body> </html>
JavaScript 程式碼
angular.module('ionicApp', ['ionic']) .controller('AppCtrl', function($scope, $timeout, $ionicLoading) { // Setup the loader $ionicLoading.show({ content: 'Loading', animation: 'fade-in', showBackdrop: true, maxWidth: 200, showDelay: 0 }); // Set a timeout to clear loader, however you would actually call the $ionicLoading.hide(); method whenever everything is ready or loaded. $timeout(function () { $ionicLoading.hide(); $scope.stooges = [{name: 'Moe'}, {name: 'Larry'}, {name: 'Curly'}]; }, 2000); });
var app = angular.module('myApp', ['ionic']) app.constant('$ionicLoadingConfig', { template: '默认加载模板……' }); app.controller('AppCtrl', function($scope, $ionicLoading) { $scope.showLoading = function() { $ionicLoading.show(); //配置选项在 $ionicLoadingConfig 设置 }; });###