Tagged Questions
The easing-functions tag has no wiki summary.
11
votes
3answers
1k views
jQuery elastic easing equation
How can I modify this jQuery easing function to produce a less exaggerated bounce?
$.easing.easeOutElasticSingleBounce = function (x, t, b, c, d) {
var s=1.70158;var p=0;var a=c;
if (t==0) ...
8
votes
1answer
808 views
How to implement JQuery easing into this window scroll movement function?
With this code I've been able to capture the mousewheel movement and apply it to the horizontal scroll bars instead of the vertical default.
$('html').bind('mousewheel', function(event, delta) {
...
7
votes
5answers
2k views
Looking for jQuery easing functions without using a plugin
I'm looking for an online list of custom easing functions that I can use with jQuery.
I'm not interested in using a plugin for this, nor am I using jQuery UI.
I found one below that does a nice ...
4
votes
3answers
654 views
jQuery easing function
How does the easing function for jQuery work? Take for example:
easeInQuad = function (x, t, b, c, d) {
return c*(t/=d)*t + b;
};
How does that work? What does each parameter hold? How would I ...
3
votes
3answers
841 views
Calculate initial velocity to move a set distance with inertia
I want to move something a set distance. However in my system there is inertia/drag/negative accelaration. I'm using a simple calculation like this for it:
v = oldV + ((targetV - oldV) * inertia)
...
3
votes
1answer
502 views
How can I compute the duration for a UIViewAnimationCurveEaseOut animation with a known starting velocity and distance?
I'm animating a view between two points using UIViewAnimationCurveLinear, so I know the velocity of this animation. In certain circumstances I want to append a UIViewAnimationCurveEaseOut to make the ...
2
votes
2answers
106 views
Help formulating a cubic easing equation
I have the following piece of code
int steps = 10;
for (int i = 0; i <= steps; i++) {
float t = i / float(steps);
console.log( "t " + t );
}
That out puts numbers in a linear fashion ...
2
votes
1answer
95 views
Help with custom jquery easing function
I need a rather atypical jquery easing function. It's basically the opposite of your traditional easeInOut easing because I want the process to go from a fast intro to a slower middle part to a fast ...
2
votes
2answers
3k views
Jquery ScrollTo Easing
Can´t apply an easing method to Jquery ScrollTo:
$("#scroller").scrollTo(target,1000,{axis:'x',easing:'linear'});
This doesn´t ease anything...
Im starting to use jquery now (been using prototype ...
2
votes
1answer
856 views
WPF 3.5 Easing Functions for Animations?
I know that there are some easing functions for silverlight and WPF 4.0 coming out.
But I really need some for my own project, and I cant seem to find any on the net (not for WPF 4.0)
Does anyone ...
1
vote
0answers
39 views
List of Control Points of Easing Functions
I'm looking for a list or a method to get the x1, x2, y1, y2 (KeySpline equivalent) values of the current Easing Functions (for ex: CircleEase with mode EaseInOut).
How I can get them?
1
vote
1answer
196 views
General easing algorithms (Not for sepecific GUI API)
I'm developing a control program for a Quadrocopter (AR Drone) under C#
I want to ease the input from keyboards (Which do not have axes like joysticks)...
So i need a collection of methods that the ...
1
vote
1answer
226 views
What is the best easing function to simulate a GUI item dropping?
There are so many easing functions available in Expression Blend, and so many settings on each, it is often hard to know instinctively what easing function to choose. Trying all the options would take ...
1
vote
2answers
379 views
Easing functions in WPF animation
Can you guys tell me is there any good, kind of a sample app where you can try all those easing functions with different parameters and see the changes?
I mean there are two actual reasons why I ...
0
votes
2answers
166 views
Customize jQuery easeOutElastic function
I've got a side scrolling web site under jQuery control, with several pages that are thousands of pixels apart, horizontally. I'm using the easeOutElastic function, but the animation happens way to ...
0
votes
1answer
73 views
implementing easing function
I'm trying to port and implement an easing function I found
EDIT
: I pasted in the wrong easing function, Sorry! Here is the correct one:
Math.easeOutQuart = function (t, b, c, d) {
t /= d;
...
0
votes
1answer
307 views
create easing function programatically c#
I am learning how to create animations with c#. so if I am animating the margin of an object for example then I would use the following method to animate it's margin:
test(someObject, ...
0
votes
1answer
84 views
changing the jQuery easing behavior
When you have an Easing for an animation, the animation follows the equation of that easing. This script describes what I mean very well.
Let's assume I did chose an Easing, any easing, and an ...
0
votes
3answers
231 views
Is it possible to specify a custom timing functions for CSS transitions?
I use CSS transitions pretty frequently now but find it limiting to only have access to ease-in, ease-out etc. The bezier-curve option appears to allow the most control but even this does not allow ...
0
votes
1answer
313 views
Ease rotation towards the mouse
The following code rotates the line towards the mouse position using a simple ease function, but the problem is that the atan2() methods works form -PI to PI, making the line to rotate backwards when ...
0
votes
1answer
156 views
Content not displaying until effect over
I have an application whit accordion
<mx:Accordion minHeight="200" includeIn="radegund0" top="10" bottom="10" left="10" right="10" openDuration="2000" openEasingFunction="{Elastic.easeOut}">
...
0
votes
1answer
318 views
Can I use jQuery easing with existing CSS mouseovers that use background-position?
I have a series of image mouseover links that change background-position when hovered. Is it possible to use jquery easing with these links without changing my CSS3? If so does anyone have any ...
0
votes
1answer
353 views
flex 4 remove Rotate easing
I'm trying to animate (rotate) an image in flex4 but it seems that flex is adding easing to my animation by default. How can I over ride this so my rotate doesn't have any easing.
Here the line of ...
0
votes
2answers
821 views
In WPF how do I add easing function to my animation from code behind?
I am creating doubleAniation in code and I want to add an easing function to it, so how do I do it?
0
votes
0answers
685 views
jQuery – Object position on mousemove. Failed to set up easing
An object's position is updated relatively to mouseposition on mousemove (opposite direction). Works perfectly well, but I failed to set up the code with smooth easing as result. The code works in ...
0
votes
0answers
614 views
jQuery IE easing error
I'm experiencing a strange error in IE on this site: http://www.davenuttall.co.uk
The fund-raising barometer on the left-hand side animates upwards to the correct position just fine in all other ...
-6
votes
2answers
188 views
Can anybody translate this to a c# code? [closed]
<Window.Resources>
<Storyboard x:Key="AnimateTarget">
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="Transform"
...