Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread George Smith
I've been working on this for a while, trying to work out the best way of implementing this as a plugin whilst trying to keep as DRY as possible, just spotted this post, hope I'm not too late :) I finally figured out the easiest way of defining an ease method would be to bastardise the speed

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread Larry Garfield
On Monday 04 September 2006 06:30, George Smith wrote: Check it out - http://gsgd.co.uk/sandbox/jquery.easing.php http://gsgd.co.uk/sandbox/jquery.easing.php Hm. In Konqueror, every one of the demos does exactly the same thing. Click one and it slides out, click a second time and it slides

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-09-04 Thread Larry Garfield
I guess I'm turning into the Konqueror tester around here... :-) They seem to work properly in Konqueror now. The animation isn't perfectly smooth, but each one is working differently now. Perhaps some better name than in and out could be used? To me, out always means at the expanded point.

Re: [jQuery] animate() support for custom tween/easing 'formulas'

2006-08-29 Thread John Resig
I did some work in this area, too. If it's useful, it's BSD-ed. http://mrclay.org/js/transition/ That is /awesome/. I just keep watching them slide in over-and-over again. I've gotta add this in now ;-) --John ___ jQuery mailing list

[jQuery] animate() support for custom tween/easing 'formulas'

2006-08-26 Thread Jon Burger
Hi guys, I have written a fair few little tween functions/classes, all of which I have made generic - ie you pass in a property to tween and it's parent obj (doesn't have to be a dom node) and you also pass in the 'tween function' - these were all 'ported' from the robert penner originals that

[jQuery] animate() support for custom tween/easing 'formulas'

2006-08-26 Thread Stefan Petre
In the new version of Interface I overwrite the 'fx' function from jQuery and replace it with a modified one that has this feature (easein, easeout, easeinout, elasticin, elasticout, etc.) . http://interface.eyecon.ro/demos/ifxfold.html if you click fold toggle you can see it in action. The