angular-animations icon indicating copy to clipboard operation
angular-animations copied to clipboard

:sparkles: Easy, Reusable Animation Utility library for Angular

Results 69 angular-animations issues
Sort by recently updated
recently updated
newest added

Hey Filipows, great library! I just started learning Angular and I'm using it to do some simple animations on a playground website I'm creating. My issue is that I'm trying...

Bumps [socket.io](https://github.com/socketio/socket.io) from 2.3.0 to 2.4.1. Release notes Sourced from socket.io's releases. 2.4.1 This release reverts the breaking change introduced in 2.4.0 (https://github.com/socketio/socket.io/commit/f78a575f66ab693c3ea96ea88429ddb1a44c86c7). If you are using Socket.IO v2, you...

dependencies

Hello, All animations in the page runs in the same time. how we can run animations on scrolling page. Example : https://stackblitz.com/edit/angular-ivy-vxaiuz?file=src/app/app.component.ts

I don't quite like the animation of `flip` and would like to have a simple card flip forward and backward. I found `flipInY` and `flipOutY` does that but I'm not...

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Hi, I really like this library. It allows us to focus on development and less on animations development. There is one thing I would like to have and this is...

Collapse/Expand have performance issues on mobile devices. This is due to height recalculation on the DOM, there is a good [article](https://developers.google.com/web/fundamentals/design-and-ux/animations/animations-and-performance) talking about this.

``` // html {{words[wordIndex]}} // ts animations: [ trigger('fadeAnimTrigger', [ transition(':decrement', [ style({ opacity: 0 }), animate('500ms', style({ opacity: 1 })) ]), transition(':increment', [ style({ opacity: 0 }), animate('500ms', style({...

Current implementation doesn't support animating leaving or entering **children** (with `query(':leave')`). It seems it's necessary to have this feature in order to [animate route views](https://angular.io/guide/route-animations).

OnLeave animations are called when you switch tabs but OnEnter animations are not called back when you reenter the same tab. This makes the elements go invisible for ever. I...