aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/scrollto/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/api/window/scrollto/index.html')
-rw-r--r--files/zh-cn/web/api/window/scrollto/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/zh-cn/web/api/window/scrollto/index.html b/files/zh-cn/web/api/window/scrollto/index.html
index 715e3f0190..83cc7657aa 100644
--- a/files/zh-cn/web/api/window/scrollto/index.html
+++ b/files/zh-cn/web/api/window/scrollto/index.html
@@ -11,7 +11,7 @@ translation_of: Web/API/Window/scrollTo
<h2 id="Syntax" name="Syntax">语法</h2>
-<pre><code>window.scrollTo(x<em>-coord</em>,<em>y-coord</em> )</code>
+<pre class="notranslate"><code>window.scrollTo(x<em>-coord</em>,<em>y-coord</em> )</code>
<code>window.scrollTo(options)</code></pre>
@@ -26,7 +26,7 @@ translation_of: Web/API/Window/scrollTo
<ol>
<li><code><em>top</em></code> 等同于  <code><em>y-coord</em></code></li>
<li><font face="consolas, Liberation Mono, courier, monospace"><span style="background-color: rgba(220, 220, 220, 0.5);">left</span></font> 等同于  <code>x<em>-coord</em></code></li>
- <li><code><em>behavior</em></code><em>  类型String,表示滚动行为,支持参数 smooth(平滑滚动),instant(瞬间滚动),默认值auto,实测效果等同于instant</em></li>
+ <li><code><em>behavior</em></code><em>  类型String,表示滚动行为,支持参数 smooth(平滑滚动),instant(瞬间滚动),默认值auto</em></li>
</ol>
<dl>
@@ -34,7 +34,7 @@ translation_of: Web/API/Window/scrollTo
<h2 id="Example" name="Example">例子</h2>
-<pre>window.scrollTo( 0, 1000 );
+<pre class="notranslate">window.scrollTo( 0, 1000 );
<code>// 设置滚动行为改为平滑的滚动
window.scrollTo({