diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-03-09 22:53:14 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-03-17 13:03:32 +0900 |
commit | d6707e7bc591b7526269b1cf52bb9db8eeb940b4 (patch) | |
tree | bfeb5079c89ac3851b3f42aa22e316bc46499740 /files/ja/web/api/clearinterval/index.html | |
parent | 3b3a1391c8d872a291d889843d0ed2e2be879c5e (diff) | |
download | translated-content-d6707e7bc591b7526269b1cf52bb9db8eeb940b4.tar.gz translated-content-d6707e7bc591b7526269b1cf52bb9db8eeb940b4.tar.bz2 translated-content-d6707e7bc591b7526269b1cf52bb9db8eeb940b4.zip |
JavaScript タイマー関係のメソッドを移行
Diffstat (limited to 'files/ja/web/api/clearinterval/index.html')
-rw-r--r-- | files/ja/web/api/clearinterval/index.html | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/files/ja/web/api/clearinterval/index.html b/files/ja/web/api/clearinterval/index.html deleted file mode 100644 index 3bccc06f99..0000000000 --- a/files/ja/web/api/clearinterval/index.html +++ /dev/null @@ -1,67 +0,0 @@ ---- -title: window.clearInterval -slug: Web/API/clearInterval -tags: - - DOM - - DOM_0 - - Gecko - - JavaScript timers - - Window -translation_of: Web/API/WindowOrWorkerGlobalScope/clearInterval -original_slug: Web/API/WindowOrWorkerGlobalScope/clearInterval ---- -<div>{{ApiRef}}</div> - -<h2 id="Summary" name="Summary">概要</h2> - -<p>{{domxref("window.setInterval", "setInterval")}} を使用して設定された繰り返し動作をキャンセルします。</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="syntaxbox"><em>window</em>.clearInterval(<var>intervalID</var>) -</pre> - -<ul> - <li><code>intervalID</code>: キャンセルする繰り返し動作の識別子。この ID は <code>setInterval()</code> の戻り値です。</li> -</ul> - -<h2 id="Example" name="Example">例</h2> - -<p>{{domxref("window.setInterval", "setInterval()", "example")}} の例を参照して下さい。</p> - -<h2 id="Specification" name="Specification">仕様</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th>仕様書</th> - <th>策定状況</th> - <th>コメント</th> - </tr> - <tr> - <td>{{SpecName('HTML WHATWG', 'webappapis.html#dom-setInterval', 'WindowOrWorkerGlobalScope.clearInterval()')}}</td> - <td>{{Spec2("HTML WHATWG")}}</td> - <td>最新の仕様で、メソッドを <code>WindowOrWorkerGlobalScope</code> ミックスインに移動。</td> - </tr> - <tr> - <td>{{SpecName("HTML WHATWG", "webappapis.html#dom-setInterval", "WindowTimers.setInterval()")}}</td> - <td>{{Spec2("HTML WHATWG")}}</td> - <td> </td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> - -<p>{{Compat("api.WindowOrWorkerGlobalScope.clearInterval")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li><a href="/ja/docs/JavaScript/Timers" title="JavaScript/Timers">JavaScript timers</a></li> - <li>{{domxref("window.setTimeout")}}</li> - <li>{{domxref("window.setInterval")}}</li> - <li>{{domxref("window.clearTimeout")}}</li> - <li>{{domxref("window.requestAnimationFrame")}}</li> - <li><a href="/ja/docs/JavaScript/Timers/Daemons"><em>Daemons</em> management</a></li> -</ul> |