1
vote
0answers
20 views

Animating multiple objects simultaneously in AngularJS produces choppy animation

While attempting to create a slideshow that fades images in and out I ran into this problem. What I found is that when doing animations one at a time, they are smooth and seamless. However when doing ...
1
vote
0answers
65 views

Weird thing going on with nested directives AngularJS

I am having a problem with nested directives, in particular within the hide-element directive. Firstly, there is an edit-mode directive that does not seem to work with ngAnimate. It would still hit ...
0
votes
0answers
14 views

How to correctly get an element's vertical offset in a directive, to be used with ng-view?

I've written a custom directive that uses the scrollAnimate plugin to create scrolling effects. I also use full jQuery. And there are view transition animations (ng-enter, ng-leave). Part of the ...
0
votes
0answers
40 views

Simple angualrjs animate of heights

I've searched for weeks on how to do this and I get how you can animate elements as they "enter" and "leave" the DOM using angular animate and generated css classes (ie. in ngRepeat). What I'm ...
0
votes
0answers
73 views

What is the correct AngularJS 1.2 way to implement this directive that triggers this animation?

I created a directive that tweens like so: app.directive('fadeInDown', function ($animate) { var directive = { link: link, restrict: 'A', }; return directive; ...
0
votes
0answers
127 views

Paginated slides in Angular

I have an array of items which I want to filter on different kinds of filters. Because I have more than 2000 items I want to paginate between pages so I've created a startFrom directive and used ...