I'm trying to understand and use ngAnimate.
I'm using angular-animate.js, animate.css and angular 1.3.
Right now I understood that, I should justI've add on my app conf ngAnimate to activate it and after just customizeI've add to my css something like that :
.ng-leave{ //-webkit-animation-name: somefadeInUp; -moz-animation-name: fadeInUp; -o-animation-name: cssfadeInUp; animation-name: fadeInUp; } NowIt's working because, I'd like to know if therefadeInUp is a way to not writing css.
For exemple, I have animateddeclare in animate.css, when a item appear I just want to use fadeInUp and when it leave, nothing...
Like I saidSo, now I would like to do the same thing without writing css (by juste using animate.css)
for exemple :I've tried something like that, but it's not working
<li class="list animated cars" ng-repeat="item in cars track by item.id" ng-appear='fadeInUp'>animate="{enter: 'fadeInUp animated', leave: 'fadeOutUp animated'}"> I'm maybe not clear, tell me I would try to improve ;)Any idea ?
Thanks