Questions tagged [easing]
Easing functions specify the rate of change of a parameter over time. Use this tag when you are using a function to transition the state of an object over a period of time.
11 questions
2
votes
1
answer
157
views
2
votes
0
answers
66
views
Two Angular animations for modal dialogs
I'm using Ionic 4 and Angular animations to animate modals. I created the following two functions that control the animations but they share a lot of repeated code. Is there a way I can clean these up ...
2
votes
1
answer
350
views
Scrolling with an easing function
I wanted to write a function that when invoked, will scroll the page downwards in a smooth fashion.
Comments and criticism welcome. I don't like, for example that determining whether it is done is ...
4
votes
1
answer
275
views
Improving jQuery scrolldown animations
I'm pretty new to client side scripting and I'm still learning.
I've written this JS plugin which animates blocks of HTML (fade-in from left/top/right/bottom) as you scroll down the page.
Everything ...
1
vote
1
answer
266
views
Javascript looping fader animation
Here's a small module I've written that implements an animation which fades through the child elements in a container div on a continual loop.
I realise I could have done this way quicker using ...
4
votes
2
answers
917
views
Custom UIElement Animations
Having fancy animations in WPF is quite nice so I tried to implement a generic fading animation for UIElements which I use for the Popups in my application. I was ...