as3 urlloader php交互 jsion,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)参数类型详情optsobjectloading指示器的选项。可用属性:{string=} template 指示器的html内容。

{string=} templateUrl 一个加载html模板的url作为指示器的内容。

{boolean=} noBackdrop 是否隐藏背景。默认情况下它会显示。

{number=} delay 指示器延迟多少毫秒显示。默认为不延迟。

{number=} duration 等待多少毫秒后自动隐藏指示器。默认情况下,指示器会一直显示,直到触发.hide()。

隐藏一个加载效果。hide()

API属性类型详情delegate-handle

(可选)字符串该句柄定义带有$ionicListDelegate的列表。

show-delete

(可选)布尔值列表项的删除按钮当前是显示还是隐藏。

show-reorder

(可选)布尔值列表项的排序按钮当前是显示还是隐藏。

can-swipe

(可选)布尔值列表项是否被允许滑动显示选项按钮。默认:true。

实例

HTML 代码:

Ionic Modal

The Stooges

{{stooge.name}}

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

});

$ionicLoadingConfig

设置加载的默认选项:

用法:var app = angular.module('myApp', ['ionic'])

app.constant('$ionicLoadingConfig', {

template: '默认加载模板……'

});

app.controller('AppCtrl', function($scope, $ionicLoading) {

$scope.showLoading = function() {

$ionicLoading.show(); //配置选项在 $ionicLoadingConfig 设置

};

});

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值