如何自动向下滚动HTML页面?

时间:2012-01-07 23:14:02

标签: javascript html css scroll height

我正在尝试在主页后开始每个页面大约500px,类似于这个网站:http://unionstationdenver.com/

您会注意到在主页后查看页面时,您会自动向下滚动而不另行通知,但您可以向上滚动以再次调整特色滑块。

我玩过scrolledHeight,但我不认为这就是我需要的????

基本上我的所有内容页面都有一个精选部分,但在向上滚动之前,您不应该看到此部分。有什么帮助吗?

4 个答案:

答案 0 :(得分:42)

您可以使用.scrollIntoView()。它会将一个特定元素带入视口。

示例:

document.getElementById( 'bottom' ).scrollIntoView();

演示:http://jsfiddle.net/ThinkingStiff/DG8yR/

脚本:

function top() {
    document.getElementById( 'top' ).scrollIntoView();    
};

function bottom() {
    document.getElementById( 'bottom' ).scrollIntoView();
    window.setTimeout( function () { top(); }, 2000 );
};

bottom();

HTML:

<div id="top">top</div>
<div id="bottom">bottom</div>

CSS:

#top {
    border: 1px solid black;
    height: 3000px;
}

#bottom {
    border: 1px solid red;
}

答案 1 :(得分:3)

您可以使用两种不同的技术来实现这一目标。

第一个是使用javascript:设置可滚动元素的scrollTop属性(例如document.body.scrollTop = 1000;)。

第二个是将链接设置为指向页面中的特定ID,例如

<a href="mypage.html#sectionOne">section one</a>

然后,如果在目标页面中您将拥有该ID,则页面将自动滚动。

答案 2 :(得分:2)

这是使用Pure JavaScript的示例

&#13;
&#13;
function scrollpage() {		
	function f() 
	{
		window.scrollTo(0,i);
		if(status==0) {
   			i=i+40;
			if(i>=Height){	status=1; } 
		} else {
			i=i-40;
			if(i<=1){	status=0; }  // if you don't want continue scroll then remove this line
		}
	setTimeout( f, 0.01 );
	}f();
}
var Height=document.documentElement.scrollHeight;
var i=1,j=Height,status=0;
scrollpage();
</script>
&#13;
<style type="text/css">

	#top { border: 1px solid black;  height: 20000px; }
	#bottom { border: 1px solid red; }

</style>
&#13;
<div id="top">top</div>
<div id="bottom">bottom</div>
&#13;
&#13;
&#13;

答案 3 :(得分:1)

使用document.scrollTop更改文档的位置。将scrollTop的{​​{1}}设置为等于网站特色部分的document