diff options
Diffstat (limited to 'files/zh-cn/web/api/window/scroll/index.html')
-rw-r--r-- | files/zh-cn/web/api/window/scroll/index.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/window/scroll/index.html b/files/zh-cn/web/api/window/scroll/index.html new file mode 100644 index 0000000000..dd889bbe60 --- /dev/null +++ b/files/zh-cn/web/api/window/scroll/index.html @@ -0,0 +1,70 @@ +--- +title: Window.scroll() +slug: Web/API/Window/scroll +tags: + - 全局方法 +translation_of: Web/API/Window/scroll +--- +<div>{{APIRef}}</div> + +<h2 id="Summary" name="Summary">概述</h2> + +<p>滚动窗口至文档中的特定位置。</p> + +<h2 id="Syntax" name="Syntax">语法</h2> + +<pre class="syntaxbox">window.scroll(<em>x-coord</em>, <em>y-coord</em>) +window.scroll(<em>options</em>) +</pre> + +<h3 id="Parameters" name="Parameters">参数</h3> + +<ul> + <li><code>x-coord</code> 值表示你想要置于左上角的像素点的横坐标。</li> + <li><code>y-coord</code> 值表示你想要置于左上角的像素点的纵坐标。</li> +</ul> + +<p>- 或者 -</p> + +<ul> + <li><code>options</code> 值是一个 {{domxref("ScrollToOptions")}} 字典</li> +</ul> + +<h2 id="Example" name="Example">示例</h2> + +<pre class="brush:html;htmlScript:true;"><!-- 把纵轴上第 100 个像素置于窗口顶部 --> + +<button onClick="scroll(0, 100);">点击以向下滚动 100 像素</button> +</pre> + +<p>使用 <code>options</code>:</p> + +<pre class="brush: js">window.scroll({ + top: 100, + left: 100, + behavior: 'smooth' +}); +</pre> + +<h2 id="Notes" name="Notes">备注</h2> + +<p><a href="/zh-CN/docs/Web/API/Window/scrollTo">window.scrollTo</a> 实际上和该方法是相同的。想要重复地滚动某个距离,请使用 <a href="/zh-CN/docs/Web/API/Window/scrollBy">window.scrollBy</a>. 参见 <a href="/zh-CN/docs/Web/API/Window/scrollByLines">window.scrollByLines</a>, <a href="/zh-CN/docs/Web/API/Window/scrollByPages">window.scrollByPages</a>.</p> + +<h2 id="Specification" name="Specification">规范</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">规范</th> + <th scope="col">状态</th> + <th scope="col">说明</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSSOM View', '#dom-window-scrollto', 'window.scrollTo()') }}</td> + <td>{{ Spec2('CSSOM View') }}</td> + <td>初始定义</td> + </tr> + </tbody> +</table> |