Page transition animation
Page transition animation using AngularJS/ngRoute
HTML
<body ng-controller="AppController as app">
Hello
</body>
CSS
* {
margin: 0;
}
html, body {
height: 100%;
}
JavaScript
(function() {
'use strict'
angular.module('app', [])
.controller('AppController', ['$rootScope', function($rootScope) {
}])
})()