aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/window/scrolly/index.html
blob: cb31724b491f75564e1ce91474f0ee0da1dd18c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
title: Window.scrollY
slug: Web/API/Window/scrollY
translation_of: Web/API/Window/scrollY
---
<div>{{APIRef}}</div>

<h2 id="Summary" name="Summary">Sumário</h2>

<p>Retorna o número de pixels que o documento já rolou verticalmente.</p>

<h2 id="Syntax" name="Syntax">Sintaxe</h2>

<pre class="syntaxbox">var y = window.scrollY;
</pre>

<ul>
 <li>y é o número atual de pixels que o documento rolou a partir do topo.</li>
</ul>

<h2 id="Example" name="Example">Exemplo</h2>

<pre class="brush:js">// verificar e ir para a segunda página
if (window.scrollY) {
  window.scroll(0, 0);  // reinicia a posição do scroll para a posição superior esquerda do documento.
}

window.scrollByPages(1);</pre>

<h2 id="Notes" name="Notes">Notas</h2>

<p>Utilize esta propriedade para verificar se o documento já foi rolado quando funções de rolagem relativa, tais como {{domxref("window.scrollBy")}}, {{domxref("window.scrollByLines")}}, ou {{domxref("window.scrollByPages")}}, forem utilizadas.</p>

<p>A propriedade <code>pageYOffset é um alias para scrollY:</code></p>

<pre>window.pageYOffset == window.scrollY; // always true</pre>

<p>For cross-browser compatibility, use <code>window.pageYOffset</code> instead of <code>window.scrollY</code>. <strong>Additionally</strong>, older versions of Internet Explorer (&lt; 9) do not support either property and must be worked around by checking other non-standard properties. A fully compatible example:</p>

<p>Para compatibilidade cross-browser, utilize window.pageYOffset em vez de window.scrollY. Além disso, versões inferiores do Internet Explorer 9 não suportam ambas as propriedades, e deve ser contornado verificando outras propriedades não padronizadas.</p>

<pre class="brush:js">var supportPageOffset = window.pageXOffset !== undefined;
var isCSS1Compat = ((document.compatMode || "") === "CSS1Compat");

var x = supportPageOffset ? window.pageXOffset : isCSS1Compat ? document.documentElement.scrollLeft : document.body.scrollLeft;
var y = supportPageOffset ? window.pageYOffset : isCSS1Compat ? document.documentElement.scrollTop : document.body.scrollTop;
</pre>

<h2 id="Specification" name="Specification">Especificação</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSSOM View', '#dom-window-scrolly', 'window.scrollY') }}</td>
   <td>{{ Spec2('CSSOM View') }}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>

<p>{{Compat("api.Window.scrollY")}}</p>

<h2 id="See_also" name="See_also">Veja também</h2>

<ul>
 <li>{{domxref("window.scrollX")}}</li>
</ul>