码迷,mamicode.com
首页 > Web开发 > 详细

angular : ng-animate : css 原理,详解

时间:2014-08-26 13:05:26      阅读:327      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   io   ar   div   cti   log   

通过几中指令就能完成1.2.xx的animate

·ng-repeat

·ng-show,ng-hide

·ng-if,ng-include,ng-view

·ng-switch

·ng-class

 

angular会在不同的时间加上不同的css

假设我们使用了ng-if

.animate.ng-enter {
    top: -200px; //进场的起点
}

.animate.ng-enter.ng-enter-active {
    top: 0px; //进场的终点
}
            
.animate {
    top: 0px; //原本的位置
}

.animate.ng-leave {
    top: 0px; //离开的起点
}

.animate.ng-leave.ng-leave-active {
    top: 200px; //离开的终点
}

angular会在不同时间给上不同的css,但是在ff是看不到的,我也不知道为什么。。。

以上是通过transition来完成动态,如果要更好的动画可以使用keyframes

angular : ng-animate : css 原理,详解

标签:style   blog   color   使用   io   ar   div   cti   log   

原文地址:http://www.cnblogs.com/stooges/p/3936970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!