我需要从上到下滚动包含内容的页面,并且导航具有“显示顶部”锚点。当我单击“显示顶部”锚点时,页面(之前未显示)将从顶部滚动到包含内容的主屏幕区域。
.topPage{
width:1280px;
color:#000;
float:left;
position:relative;
background:#E6E6E8;
}
$('a.scrollToBottom').click(function(){
$('html, body').stop().animate({
scrollTop: $("#topPage").offset().top
}, 2000);
// event.preventDefault();
});
但是页面(topPage)从下到上滚动。我需要从上到下滚动才能显示在主屏幕区域。