diff options
Diffstat (limited to 'files/pt-br/web/api/window/scroll/index.html')
-rw-r--r-- | files/pt-br/web/api/window/scroll/index.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/files/pt-br/web/api/window/scroll/index.html b/files/pt-br/web/api/window/scroll/index.html new file mode 100644 index 0000000000..01ece16bbd --- /dev/null +++ b/files/pt-br/web/api/window/scroll/index.html @@ -0,0 +1,57 @@ +--- +title: Window.scroll() +slug: Web/API/Window/scroll +tags: + - API + - CSSOM View + - Referencia + - metodo +translation_of: Web/API/Window/scroll +--- +<div>{{APIRef}}</div> + +<h2 id="Summary" name="Summary">Resumo</h2> + +<p>Rola a janela para uma posição específica no documento.</p> + +<h2 id="Syntax" name="Syntax">Sintaxe</h2> + +<pre class="syntaxbox">window.scroll(<em>x-coord</em>, <em>y-coord</em>) +</pre> + +<h3 id="Parameters" name="Parameters">Parâmetros</h3> + +<ul> + <li><code>x-coord</code> é o pixel que você deseja exibir ao longo do eixo horizontal do documento em relação à sua extremidade superior esquerda. </li> + <li><code>y-coord </code>é o pixel que você deseja exibir ao longo do eixo vertical do documento em relação à sua extremidade superior esquerda. </li> +</ul> + +<h2 id="Example" name="Example">Exemplo</h2> + +<pre class="brush:html;htmlScript:true;"><!-- disponha o centésimo pixel vertical no topo da janela --> + +<button onClick="scroll(0, 100);">clique para rolar 100 pixels para baixo</button> +</pre> + +<h2 id="Notes" name="Notes">Notas</h2> + +<p><a href="/en-US/docs/DOM/window.scrollTo">window.scrollTo</a> é essencialmente equivalente a este método. Para rolar uma distância específica repetidamente, utilize o método <a href="/en-US/docs/Window.scrollBy">window.scrollBy</a>. Veja também <a href="/en-US/docs/Window.scrollByLines">window.scrollByLines</a>, <a href="/en-US/docs/Window.scrollByPages">window.scrollByPages</a>.</p> + +<h2 id="Specification" name="Specification">Especificação</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Status</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('CSSOM View', '#dom-window-scroll', 'window.scroll()') }}</td> + <td>{{ Spec2('CSSOM View') }}</td> + <td>Definição inicial.</td> + </tr> + </tbody> +</table> |