使用ngView配合AngularJS应用实现动画效果的方法
angularjs 提供了一个很棒的方式来创建单页app。正是由于这个原因,使得我们的站点看起来更像是一个原生的手机程序。为了使它看起来更像是原生的程序,我们可以使用 nganimate module 为它添加过渡和动画效果。
这个模块可以使我们创建漂亮的程序。今天,我们将要看一下如何为 ng-view 添加动画效果。
我们要构建什么
我们假设我们有一个单页面的程序,并且想为这个页面添加动画效果。点击某一个链接会将一个试图滑出,同时将另一个试图滑入。
我们将会使用:
- 使用 ngroute 来为我们的页面路由
- 使用 nganimate 来为页面创建动画效果
- 对页面使用 css animations
- 当我们离开或进入试图时,我们的每一个页面会有不同的动画效果
extreme animations: 我们在这里使用的动画效果就是上面提到的这些。精巧的动画效果可以为你的站点增色不少,仅仅是demo页面就足够令我们为之疯狂了。*动画效果来自于codrops上的 a collection of page transitions
它如何工作?
让我们看一下nganimate是如何工作的。nganimate 会根据是进入还是离开视图来为不同的angular 指令(directive)添加和移除不同的css类名。例如,当我们加载网站时,无论ng-view中填充了什么都会得到一个.ng-enter的类名。
我们所需要做的就是给.ng-enter 类名添加css动画效果,该动画在进入的时候会自动生效。
nganimate 可以应用于: ngrepeat, nginclude, ngif, ngswitch, ngshow, nghide, ngview 以及 ngclass
一定要查看 nganimate 文档 来了解nganimate更多的功能。接下来,让我们在实际应用中了解一下。
开始我们的程序
以下使我们需要的文件:
- - index.html
- - style.css
- - app.js
- - page-home.html
- - page-about.html
- - page-contact.html
让我们从 index.html 开始,我们将会加载 angularjs, ngroute 以及 nganimate。对了,不要忘了使用bootstrap 来定义样式。
<!-- index.html --> <!doctype html> <html> <head> <!-- css --> <!-- load bootstrap (bootswatch version) --> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/readable/bootstrap.min.css"> <link rel="stylesheet" href="style.css"> <!-- js --> <!-- load angular, ngroute, nganimate --> <script src="http://code.angularjs.org/1.2.13/angular.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular-route.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular-animate.js"></script> <script src="app.js"></script> </head> <!-- apply our angular app --> <body ng-app="animateapp"> <!-- inject our views using ng-view --> <!-- each angular controller applies a different class here --> <div class="page {{ pageclass }}" ng-view></div> </body> </html>
以上就是我们非常简单的html文件。加载我们需要的资源,定义我们的angular app,并且为我们注入的视图添加ng-view类名。
让我们看一下我们所需要的其他的一些文件:
- - index.html
- - style.css
- - app.js
- - page-home.html
- - page-about.html
- - page-contact.html
我们的 angular 程序 app.js
现在,我们需要将会创建一个带路由的angular程序,以便我们可以在不刷新页面的情况下修改我们的页面。
// app.js // define our application and pull in ngroute and nganimate var animateapp = angular.module('animateapp', ['ngroute', 'nganimate']); // routing =============================================== // set our routing for this application // each route will pull in a different controller animateapp.config(function($routeprovider) { $routeprovider // home page .when('/', { templateurl: 'page-home.html', controller: 'maincontroller' }) // about page .when('/about', { templateurl: 'page-about.html', controller: 'aboutcontroller' }) // contact page .when('/contact', { templateurl: 'page-contact.html', controller: 'contactcontroller' }); }); // controllers ============================================ // home page controller animateapp.controller('maincontroller', function($scope) { $scope.pageclass = 'page-home'; }); // about page controller animateapp.controller('aboutcontroller', function($scope) { $scope.pageclass = 'page-about'; }); // contact page controller animateapp.controller('contactcontroller', function($scope) { $scope.pageclass = 'page-contact'; });
现在,我们创建了我们的程序、路由以及控制器。
每一个控制器都有一个它自己的pageclass变量。改变了的值会被添加到index.html文件中的ng-view中,这样我们的每一个页面都有了不同的类名。通过这些不同的类名,我们可以为不同的页面添加不同的动画效果。
视图 page-home.html, page-about.html, page-contact.html
这些应该尽量保持清晰并且直接明了。我们只需要为每个页面准备一些文字以及链到其他页面的链接地址。
<!-- page-home.html --> <h1>angular animations shenanigans</h1> <h2>home</h2> <a href="#about" class="btn btn-success btn-lg">about</a> <a href="#contact" class="btn btn-danger btn-lg">contact</a> <!-- page-about.html --> <h1>animating pages is fun</h1> <h2>about</h2> <a href="#" class="btn btn-primary btn-lg">home</a> <a href="#contact" class="btn btn-danger btn-lg">contact</a> <!-- page-contact.html --> <h1>tons of animations</h1> <h2>contact</h2> <a href="#" class="btn btn-primary btn-lg">home</a> <a href="#about" class="btn btn-success btn-lg">about</a>
现在,我们拥有了我们的页面,通过使用angular的路由功能可以将这些页面注入到我们的主index.html文件中。
现在,所有的乏味的工作已经完成。我们的程序应该可以正常工作,并且可以很好的修改页面。接下来,让我们进入下一步,为页面添加动画效果!
为app添加动画效果 style.css
我们将使用css来添加所有的动画效果。这种方法很棒,因为我们所要做的事就是添加nganimate,并且不用修改我们的代码就可以添加css动画效果。
nganimate为我们的ng-view添加的两个类分别是.ng-enter和.ng-leave。你可以想象一些他们各自的作用。
基础样式
为了使我们的程序看起来不那么乏味,我们将会添加一些基础的样式。
/* make our pages be full width and full height */ /* positioned absolutely so that the pages can overlap each other as they enter and leave */ .page { bottom:0; padding-top:200px; position:absolute; text-align:center; top:0; width:100%; } .page h1 { font-size:60px; } .page a { margin-top:50px; } /* pages (specific colors for each page) ============================================================================= */ .page-home { background:#00d0bc; color:#00907c; } .page-about { background:#e59400; color:#a55400; } .page-contact { background:#ffa6bb; color:#9e0000; }
通过以上的代码,我们为3个页面添加了基础的样式。当我们点击程序的时候,我们可以看到它们应用了不同的颜色和间距。
css 动画
让我们定义我们的动画效果,之后我们将会了解一下当页面进入或离开的时候我们怎么才能为不同的页面应用不用的动画效果。
vendor prefixes: 我们将会使用默认的css属性,不带任何前缀的。完整的代码会包含所有的前缀。
我们定义了6个不同的动画效果。每一个页面都会有他们各自的ng-enter 和 ng-leave 的动画效果。
/* style.css */ ... /* animations ============================================================================= */ /* leaving animations ----------------------------------------- */ /* rotate and fall */ @keyframes rotatefall { 0% { transform: rotatez(0deg); } 20% { transform: rotatez(10deg); animation-timing-function: ease-out; } 40% { transform: rotatez(17deg); } 60% { transform: rotatez(16deg); } 100% { transform: translatey(100%) rotatez(17deg); } } /* slide in from the bottom */ @keyframes slideoutleft { to { transform: translatex(-100%); } } /* rotate out newspaper */ @keyframes rotateoutnewspaper { to { transform: translatez(-3000px) rotatez(360deg); opacity: 0; } } /* entering animations --------------------------------------- */ /* scale up */ @keyframes scaleup { from { opacity: 0.3; -webkit-transform: scale(0.8); } } /* slide in from the right */ @keyframes slideinright { from { transform:translatex(100%); } to { transform: translatex(0); } } /* slide in from the bottom */ @keyframes slideinup { from { transform:translatey(100%); } to { transform: translatey(0); } }
结合以上我们所定义的动画效果,我们将会把它们应用到我们的页面上。
进入和离开动画效果
我们只需要将这些动画效果应用给.ng-enter 或 .ng-leave就可以为我们的页面添加不用的动画效果。
/* style.css */ ... .ng-enter { animation: scaleup 0.5s both ease-in; z-index: 8888; } .ng-leave { animation: slideoutleft 0.5s both ease-in; z-index: 9999; } ...
现在,我们的程序就会有像上面那样的动画效果了。当离开的时候,页面会向左滑出,当进入的时候会放大。我们还添加了z-index属性,以便离开的页面会处于进入的页面的上层。
让我们看一下如何为具体的页面创建动画。
具体页面的动画效果
我们为不同的页面创建了各自的angular 控制器。在这些控制器里面,我们添加了一个pageclass并且将它添加到我们的<div ng-view>中。我们将会使用这些类名来引出具体的页面。
不像上面的.ng-enter 和 .ng-leave那样,我们使它们更加具体化。
... .ng-enter { z-index: 8888; } .ng-leave { z-index: 9999; } /* page specific animations ------------------------ */ /* home -------------------------- */ .page-home.ng-enter { animation: scaleup 0.5s both ease-in; } .page-home.ng-leave { transform-origin: 0% 0%; animation: rotatefall 1s both ease-in; } /* about ------------------------ */ .page-about.ng-enter { animation:slideinright 0.5s both ease-in; } .page-about.ng-leave { animation:slideoutleft 0.5s both ease-in; } /* contact ---------------------- */ .page-contact.ng-leave { transform-origin: 50% 50%; animation: rotateoutnewspaper .5s both ease-in; } .page-contact.ng-enter { animation:slideinup 0.5s both ease-in; } ...
现在,每一个页面都有它各自唯一的进入和离开的动画效果。
总结
为我们的angular程序添加动画效果是相当容易的。你所需要做的就是加载nganimate并创建你的css动画效果。真诚的希望这篇文章可以帮助你了解一些使用ng-view时的一些比较酷的动画效果。
view code : http://plnkr.co/edit/uw4v9t?p=info
推荐阅读
-
Python使用Matplotlib实现雨点图动画效果的方法
-
在AngularJS应用中实现一些动画效果的代码
-
AngularJS中实现动画效果的方法
-
使用ngView配合AngularJS应用实现动画效果的方法
-
Python使用Matplotlib实现雨点图动画效果的方法
-
AngularJS开发WebApp实现高亮跳转按钮效果,ui-sref和ui-sref-active的使用方法
-
AngularJS中实现动画效果的方法
-
如何使用JavaScript实现按钮颜色渐变的动画效果方法介绍
-
AngularJS开发WebApp实现高亮跳转按钮效果,ui-sref和ui-sref-active的使用方法
-
在AngularJS应用中实现一些动画效果的代码_AngularJS