Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Navigation or slider effect like www.melissahie.com Re: Navigation or slider effect like www.melissahie.com

#59410
Mr KiTT3N
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