Stick with me on this one. I'm trying to mimick CSS3 transitions and (as an example) I quite liked how the logo came in and did a "bounce" effect on http://metalabdesign.com
I've created a quick jsFiddle on how I thought this might work with jQuery animations http://jsfiddle.net/EEtVs/ but am honestly not sure if I should be using jQuery Easing http://gsgd.co.uk/sandbox/jquery/easing/ would be the better route here.
I'm more or less looking for the best way to handle easeIn type transitions with jQuery. The route I went in my fiddle is, I'd have to specify a non-JS version for those who don't have it enabled (I know, EVERYONE should, just sayin) and I'd like it work in all browsers (not just the good ones) which is why I'm going the jQuery route.
But, the issue I'm seeing with my jQuery way is how I have the negative top positioning calculated and how that could effect the actual "transition effect". If anyone has an idea how I'd create something similar with jQuery easing (or a better way) I'd be very appreciative. I've had quite a struggle trying to implement jQuery easing... so really stuck in the mud at the moment. Thanks!
easingparameter. Or am I not understanding your question? If you use jQuery-ui, you get access to many, many more easing functions. – btleffler Nov 11 '11 at 17:25position:relative;top:-200px;for an easing effect is completely stupid or not ;) Was assuming if jQuery easing was enabled, there'd be that "flicker" of the element showing up before it was hidden by JS and then shown again by that same JS. Tryinig to come up with the best/most logical user experience here... maybe that's contradictory compared to fading in anything anyways... but dammit I think it would be cool! ha – Zach Nov 11 '11 at 17:28display: hiddenin your CSS. If the user doesn't have Javascript enabled, you can use the<noscript>tag to put another copy of your hidden element that isn't hidden by default or something. But none of that has to do with easing... I'm not sure what you're trying to ask still. @Jasper seems to have a good answer. – btleffler Nov 11 '11 at 17:32