Home › Forums › JavaScript › Navigation or slider effect like www.melissahie.com › Re: Navigation or slider effect like www.melissahie.com
June 21, 2009 at 5:08 am
#59410
Member
first set body css to {overflow: hidden;} /// This hides the scroll bars
Next,
wrap everything in a div (ie div#wrapper) this is what you going to move
all you have to do know is animate the wrapper
Code:
$(function(){
$wrapper = $(‘#wrapper’);
$(‘body’).css(‘overflow’ , ‘hidden’); // change css via js so if javascript isnt allowed users can still use the site
$(#nav a).click(function(){
$wrapper.animate({left: 0px, top: 0px;});
});
});
hope that helps