aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/onscroll/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/api/window/onscroll/index.html')
-rw-r--r--files/zh-cn/web/api/window/onscroll/index.html54
1 files changed, 0 insertions, 54 deletions
diff --git a/files/zh-cn/web/api/window/onscroll/index.html b/files/zh-cn/web/api/window/onscroll/index.html
deleted file mode 100644
index af48e1575f..0000000000
--- a/files/zh-cn/web/api/window/onscroll/index.html
+++ /dev/null
@@ -1,54 +0,0 @@
----
-title: window.onscroll
-slug: Web/API/Window/onscroll
-translation_of: Web/API/GlobalEventHandlers/onscroll
-translation_of_original: Web/API/Window/onscroll
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Summary" name="Summary">概述</h3>
-<p>为当前页面的页面滚动事件添加事件处理函数.</p>
-<h3 id="Syntax" name="Syntax">语法</h3>
-<pre class="eval">window.onscroll = <em>funcRef</em>;
-</pre>
-<ul>
- <li><code>funcRef</code> 是个函数类型的对象引用或者匿名函数.</li>
-</ul>
-<h3 id="Example" name="Example">例子</h3>
-<pre class="brush: js">window.onscroll = function (e) {
- // 当页面的滚动条滚动时,会执行这里的代码
-}
-</pre>
-<pre class="brush: html">&lt;html&gt;
-&lt;head&gt;
-
-&lt;title&gt;onscroll test&lt;/title&gt;
-
-&lt;script type="text/javascript"&gt;
-
-window.onscroll = scroll;
-
-function scroll()
-{
- alert("检测到页面滚动事件:"+window.pageXOffset+" "+window.pageYOffset);
- // 注意: window.innerWidth 和 window.innerHeight 可以获得页面可见区域的宽和高.
-}
-&lt;/script&gt;
-&lt;/head&gt;
-
-&lt;body&gt;
-&lt;p&gt;Resize the window&lt;/p&gt;
-&lt;p&gt;to a very small size,&lt;/p&gt;
-&lt;p&gt;and use the scrollbars&lt;/p&gt;
-&lt;p&gt;to move around the page content&lt;/p&gt;
-&lt;p&gt;in the window.&lt;/p&gt;
-&lt;/body&gt;
-&lt;/html&gt;
-</pre>
-<h3 id="Notes" name="Notes">备注</h3>
-<p>{{ Bug("189308") }}, 在旧版本的Gecko中(Gecko 1.8/Firefox 1.5之前), scroll 事件只会在用户拖动滚动条时发生,使用方向键和鼠标滚轮滚动页面则不会触发该事件.</p>
-<p>当 window.scrollX/scrollY 不为 0时,意味着用户或者网页脚本已经执行了窗口的滚动行为.</p>
-<h3 id="Specification" name="Specification">规范</h3>
-<ul>
- <li><a class="external" href="http://www.w3.org/TR/html5/webappapis.html#event-handlers-on-elements-document-objects-and-window-objects" title="http://www.w3.org/TR/html5/webappapis.html#event-handlers-on-elements-document-objects-and-window-objects">HTML5: Event handlers on elements, Document objects, and Window objects</a></li>
-</ul>
-<p>{{ languages( { "en": "en/DOM/window.onscroll"} ) }}</p>