Slide up/down effect with ng-show and ng-animate

后端 未结 8 767
一个人的身影
一个人的身影 2020-12-07 14:40

I\'m trying to use ng-animate to get a behavior similar to JQuery\'s slideUp() and slideDown(). Only I\'d rather use ng-show

8条回答
  •  臣服心动
    2020-12-07 15:12

    update for Angular 1.2+ (v1.2.6 at the time of this post):

    .stuff-to-show {
      position: relative;
      height: 100px;
      -webkit-transition: top linear 1.5s;
      transition: top linear 1.5s;
      top: 0;
    }
    .stuff-to-show.ng-hide {
      top: -100px;
    }
    .stuff-to-show.ng-hide-add,
    .stuff-to-show.ng-hide-remove {
      display: block!important;
    }
    

    (plunker)

提交回复
热议问题