aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/window/setcursor/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/api/window/setcursor/index.html')
-rw-r--r--files/pt-br/web/api/window/setcursor/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/pt-br/web/api/window/setcursor/index.html b/files/pt-br/web/api/window/setcursor/index.html
new file mode 100644
index 0000000000..d85dfb7c01
--- /dev/null
+++ b/files/pt-br/web/api/window/setcursor/index.html
@@ -0,0 +1,28 @@
+---
+title: Window.setCursor()
+slug: Web/API/Window/setCursor
+translation_of: Web/API/Window/setCursor
+---
+<div>{{ ApiRef() }}</div>
+
+<div> </div>
+
+<h2 id="Summary" name="Summary">Sumário</h2>
+
+<p>Altera o cursor para a janela atual.</p>
+
+<h2 id="Example" name="Example">Exemplo</h2>
+
+<pre class="syntaxbox">function setBusyCursor(enable) {
+ window.setCursor(enable ? "wait" : "auto");
+}</pre>
+
+<h2 id="Notes" name="Notes">Notas</h2>
+
+<p>O cursor não retornará ao seu padrão até que seja definido novamente para <code>auto</code>.</p>
+
+<p>Esta função é parte do <a href="/en-US/docs/XPCOM_Interface_Reference/nsIDOMChromeWindow">ChromeWindow interface</a>. Esta função não está habilitada para páginas web, que podem usar a propriedade CSS {{cssxref("cursor")}} em seu lugar.</p>
+
+<h2 id="Especificação">Especificação</h2>
+
+<p>{{dom0}}</p>