Angular Animate is another AngularJS module which create some classes (like ".ng-leave", ".ng-enter") based on the background activities status. Instead of use those classes only for create some css transitions, we can make more useful of these classes to notify user whether a page is being loading or completely loaded by using the css pseudo elements like:
ng-enter:before { content: 'Please wait...'; display: block; position: fixed; width: 100%; height: 100%; background: #000; color: #fff; font-size: 24px; padding-top: 42px; }
For example, please visit: http://adistyanapitaloka.com
No comments:
Post a Comment