Latest web development tutorials

ionische Lastbetrieb

$ IonicLoading ist ionische Last eine Standard-Interaktionseffekt. Sie können auch den Inhalt in der Vorlage innen ändern.

Verwendung

angular.module('LoadingApp', ['ionic'])
.controller('LoadingCtrl', function($scope, $ionicLoading) {
  $scope.show = function() {
    $ionicLoading.show({
      template: 'Loading...'
    });
  };
  $scope.hide = function(){
    $ionicLoading.hide();
  };
});

Weg

Zeigen Sie ein Belastungseffekt.

show(opts)
Parameter Typ Detail
opts object

Ladeanzeige Option. Immobilien-Angebote:

  • {string=} template - Anzeige von HTML - Inhalten.
  • {string=} templateUrl eine Last url HTML - Template als Inhaltsanzeige.
  • {boolean=} noBackdrop ist versteckt Hintergrund. Standardmäßig wird es zeigen.
  • {number=} delay - Indikator zeigt an, wie viele Millisekunden verzögern. Der Standardwert ist nicht verzögert.
  • {number=} duration warten , wie viele Millisekunden nach dem automatischen Ausblenden Anzeige. Standardmäßig wird die Anzeige fortgesetzt , bis der Auslöser zum Anzeigen .hide() .

Ausblenden einer Belastungseffekt.

hide()

API

Immobilien Typ Detail
Delegat-Griff
(Optional)
字符串

Der Griff ist mit definiert $ionicListDelegate Liste.

zeige löschen
(Optional)
布尔值

Löschen-Taste Liste der Elemente zur Zeit ein- oder ausgeblendet.

Show-Neuordnungs
(Optional)
布尔值

Schaltfläche Sortieren Listenelemente zur Zeit ein- oder ausgeblendet.

can-Swipe
(Optional)
布尔值

Ob das Listenelement darf Anzeigeoptionen Taste schieben. Standard: true.


Beispiele

HTML-Code:

<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.w3big.com/static/ionic/css/ionic.min.css" rel="stylesheet">
    <script src="http://www.w3big.com/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-Code

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);
  
});


$ IonicLoadingConfig

Legen Sie die Standardoptionen zu laden:

Verbrauch:

var app = angular.module('myApp', ['ionic'])
app.constant('$ionicLoadingConfig', {
  template: '默认加载模板……'
});
app.controller('AppCtrl', function($scope, $ionicLoading) {
  $scope.showLoading = function() {
    $ionicLoading.show(); //配置选项在 $ionicLoadingConfig 设置
  };
});