Programming Steps
Step-By-Step Programming For Beginners
Auto-Codes
C Language
Cobol 85 Language
ColdFusion Language
Cordova
HTML5
Java Language
Mobile
Objective-C Language
PhoneGap
PHP
Python Language
Ruby Language
Learn the powerful enterprise adaptable database:
Getting Started With ADABAS & Natural
Friday, June 2, 2017
215 Ionic-v1 Custom Loading Bar: Nightly
Custom Loading Bar: Nightly
code example:
<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 Custom Loading Bar</title> <link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet"> <script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script> <style> .bar.bar-loading { display: block; height: 24px; /* starts right below a normal header */ top: 44px; /* make the text centered vertically and horizontally */ text-align: center; padding: 0; line-height: 24px; /* transition 'sliding down' (check below)*/ -webkit-transition: 200ms all; } /* * make the content's top changes animate. * might not always look good, but looks * good when our loader is added & removed */ .has-header { -webkit-transition: 200ms top; } .has-header.has-loading { /* 44px (header) + 24px */ top: 68px; } /* make loading bar slide up/down */ .bar-loading.ng-enter, .bar-loading.ng-leave.ng-leave-active { height: 0; border-width: 0px; } .bar-loading.ng-enter.ng-enter-active, .bar-loading.ng-leave { height: 24px; border-width: 1px; } </style> </head> <body ng-controller="MainCtrl"> <ion-header-bar class="bar-positive"> <h1 class="title">Hello!</h1> </ion-header-bar> <div class="bar bar-loading bar-assertive" ng-if="data.isLoading"> Loading... </div> <ion-content ng-class="{'has-loading': data.isLoading}"> <ion-toggle ng-model="data.isLoading">Toggle me to toggle loading!</ion-toggle> </ion-content> <script> angular.module('ionicApp', ['ionic']) .controller('MainCtrl', ['$scope', function($scope) { $scope.data = { isLoading: false }; }]); </script> </body> </html>
See the Pen
Custom Loading Bar: Nightly
by Ionic (
@ionic
) on
CodePen
.
https://codepen.io/ionic/pens/public/
201706,20170602
Related Posts:
314 ionic-v1 Ionic Slide Tab
313 ionic-v1 Custom Loading Bar
312 ionic-v1 Ionic Simple Progress ...
Ionic V1 Project My Club
315 ionic-v1 Ionic Tinder Cards 2
Related Posts Widget
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment