zoukankan      html  css  js  c++  java
  • ionic的加载功能

    下面是代码(黄色背景的是加载功能的代码):

    <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>菜鸟教程(runoob.com)</title>
    
        <link href="http://www.runoob.com/static/ionic/css/ionic.min.css" rel="stylesheet">
        <script src="http://www.runoob.com/static/ionic/js/ionic.bundle.min.js"></script>
        <script>
        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);
          
        });
        </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>
  • 相关阅读:
    ROC-RK3308-CC 四核64位AIOT主板
    ROC-RK3399-PC六核64位高性能主板
    【新品发布】AIO-3399C六核高性能主板
    Firefly Mutil-Boot多系统安装启动程序发布
    excel快捷键
    word去格式按钮
    mongodb安装
    eclipse maven
    ubuntu win7引导修复
    maven(入门一)
  • 原文地址:https://www.cnblogs.com/modou/p/5893410.html
Copyright © 2011-2022 走看看