I've been playing with the easing on a menu so long that it is making me dizzy. I have a menu and when you click on it, it eases the associated content into view. I'm not sure what search terms to use to have the element just appear instead of ease. Instead of animating from -1000px to 0px, just go directly from one to another.

Here is the code I have been using from CODROPS
I'm trying to modify or replace it so the page doesn't ease into view it just blinks into existence.

     if(idx > current){
                            $current.stop().animate({'top':'-1000px'},600,'linear',function(){
                                $(this).css({'top':'310px'});
                            });
                            $next.css({'top':'1000px'}).stop().animate({'top':'5px'},600,'linear');
                        }  
/* UP THE LIST */       else if(idx < current){
                            $current.stop().animate({'top':'1000px'},600,'linear',function(){
                                $(this).css({'top':'1000px'});
                            });
                            $next.css({'top':'-1000px'}).stop().animate({'top':'5px'},600,'linear');
                        }
link|improve this question

78% accept rate
feedback

1 Answer

If you don't want animation, you can either just hide() and show() the new elements or just change their height() or width() directly (depending upon what previous state the elements were in).

link|improve this answer
THank you again jfriend. I looking up how to implement those into the code above now. – rd42 Jan 22 at 17:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.