The only answer related I could find was this but I found no comfort in the answer. I'm trying to animate the child of an ng-repeat group of elements but failing miserably, tried various combinations of ng-enter ng-enter-actives etc but cant seem to get my desired effect.
html:
<div ng-repeat="ex in [1,2,3,4]" class="outer">
<div class="inner"></div>
</div>
css
.inner{
transition:1s linear all;
}
.outer.ng-enter .inner{
width:1px;
}
.outer.ng-enter-active .inner{
width:100px;
}
.outer.ng-active .inner{
width:100px;
}
I'm just trying to get the child of ng-repeat to animate on load. Here is a fiddle I'd appreciate any help.