easing-functions Questions

5

Solved

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...
Feliks asked 1/6, 2011 at 10:25

5

Solved

What is meant by easing function in the context of animation. It seems that dojo, jquery, silverlight, flex and other UI systems have the notion of easing function. I could not locate a good explan...
Infusorian asked 29/11, 2011 at 19:56

5

I want to apply a translate animation on an Android view (button) using a custom interpolator where the easing function is: public static float easeOut(float t,float b , float c, float d) { if ((...
Prakrit asked 6/4, 2014 at 16:16

4

Solved

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 l...
Penicillium asked 5/3, 2011 at 22:46

5

Solved

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 ...
Danie asked 6/5, 2011 at 19:21

4

Solved

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 prototyp...
Flour asked 25/11, 2010 at 9:11

2

The lack of custom easing curves in UIView's block based animation methods leads to Core Animation if more advanced curves are needed. A way of doing this with a Category on CAKeyframeAnimation i...
Terryterrye asked 22/9, 2012 at 11:17

1

Solved

I am trying to implement fluid movement of tabs in TChromeTabs. I can see the easing formulas here, but I am no mathematician and have no idea how to translate this into code. My attempts so far ha...
Chism asked 19/12, 2012 at 12:47

3

Solved

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) retur...
Onomastic asked 25/3, 2011 at 18:36

1

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) { ...
Contradistinguish asked 1/6, 2010 at 5:20

3

Solved

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) ...
Endomorph asked 21/3, 2010 at 12:36
1

© 2022 - 2024 — McMap. All rights reserved.