angularjs - How apply animation transition on ng-view -


i'm trying apply transition in ng-view angular dart.

html:

<ng-view class="main-animation"></ng-view> 

css:

.main-animation.ng-enter {     -webkit-transition: 3000ms;     -moz-transition: 3000ms;     -ms-transition: 3000ms;     -o-transition: 3000ms;     transition: 3000ms;     opacity: 0; } .main-animation.ng-enter.ng-enter-active {     opacity: 1; } 

the animation doesn't work, ng-enter , ng-enter-active class not appear, , if simulate class putting.

<ng-view class="main-animation ng-enter"><ngview>  

the content still rendering. ng-view in angular dart support animate?


Comments

Popular posts from this blog

python 3.x - Mapping specific letters onto a list of words -

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -