css - Doing animation with ng-show without ngAnimate -
i want wipe-in animation ng-show. basically, want achieve simple animation shown in plunkr here.
i know ngshow has hook ng-animate since angular 1.3. however, situation bit complicated. have carousel extend using angular ui carousel bootstrap. bootstrap has bug chrome, nganimate needs disabled elements under carousel
tag. need animation element under carousel, if include nganimate, carousel won't work in chrome -- described in github issue tracker here
as workaround, thinking animation using traditional css bootstrap ng-show inside carousel. did research have no luck far. possible? , try before? much!
you can use ng-class
directive instead of ng-show
, ng-hide
conditionally add class element should wipe-in, invoking desired transition, giving same effect , omitting entirely nganimate
module. here's plunker showing implementation.
Comments
Post a Comment