在页面加载时水平滚动到页面中间

时间:2018-02-09 16:22:54

标签: html css center centering

This page here需要从中间开始,其中显示“存在”。不在左边,现在从那里开始。是可行的吗?

我找到的最后一个是 -

 <script> function pageScroll() { window.scrollTo(2000,0); scrolldelay = setTimeout('pageScroll()',100);} //Increase this # to slow down, decrease to speed up scrolling } //--> </script> 

<body onload="pageScroll()">但它迫使我的网页不断回归中心。我只需要页面加载的中心视图。稍后,用户应该能够自由地向左或向右移动。

1 个答案:

答案 0 :(得分:0)

这个脚本应该这样做。适用于Edge,Firefox,但在Chrome中失败(报告已发送)。

function pageScroll() {window.scrollTo(x,y);}   //set x,y to desired pixel value