diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/network_information_api | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/network_information_api')
-rw-r--r-- | files/ja/web/api/network_information_api/index.html | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/files/ja/web/api/network_information_api/index.html b/files/ja/web/api/network_information_api/index.html new file mode 100644 index 0000000000..3124e7cdb1 --- /dev/null +++ b/files/ja/web/api/network_information_api/index.html @@ -0,0 +1,93 @@ +--- +title: Network Information API +slug: Web/API/Network_Information_API +tags: + - API + - Experimental + - Network Information API + - Reference + - WebAPI +translation_of: Web/API/Network_Information_API +--- +<p>{{DefaultAPISidebar("Network Information API")}}{{SeeCompatTable}}</p> + +<p>Network Information API はシステムのネットワーク接続に関する情報を、一般的な接続タイプ (例: 'wifi' や 'cellular' など) の観点から提供します。これは、ユーザーの接続を元に高解像度コンテンツまたは低解像度コンテンツを選択するために使用することができます。API の全体像は {{domxref("NetworkInformation")}} インターフェイスの追加と、{{domxref("Navigator")}} インターフェイスに追加された 1 個のプロパティ {{domxref("Navigator.connection")}} で構成されます。</p> + +<p>{{AvailableInWorkers}}</p> + +<h2 id="Examples" name="Examples">例</h2> + +<h3 id="Detect_connection_changes" name="Detect_connection_changes">接続の変化の検出</h3> + +<p>以下の例では、ユーザーの接続の変化を監視します。</p> + +<pre class="brush: js notranslate">var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; +var type = connection.effectiveType; + +function updateConnectionStatus() { + console.log("接続タイプが" + type + "から" + connection.effectiveType + "に変化"); + type = connection.effectiveType; +} + +connection.addEventListener('change', updateConnectionStatus); +</pre> + +<h3 id="Preload_large_resources" name="Preload_large_resources">大きなリソースを事前読み込み</h3> + +<p>接続オブジェクトは、大きな帯域幅やメモリが使われるリソースを事前読み込みするかどうか決める場合に便利です。以下の例は、ページの読み込み直後に呼び出され、動画の事前読み込みが望ましくない場合の接続タイプを確かめます。携帯電話回線接続が見つかると、 <code>preloadVideo</code> フラグは <code>false</code> に設定されます。コードをわかりやすくするために、この例ではひとつの接続タイプだけをテストしました。実際に使う場合には、 <code>switch</code> 文その他のやり方で、 {{domxref("NetworkInformation.type")}} の可能な値すべてを確かめることになるでしょう。 <code>type</code> の値にかかわらず、 {{domxref("NetworkInformation.effectiveType")}} プロパティを用いて接続速度を見積もることができます。</p> + +<pre class="brush: js notranslate">let preloadVideo = true; +var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; +if (connection) { + if (connection.effectiveType === 'slow-2g') { + preloadVideo = false; + } +}</pre> + +<h2 id="Interfaces" name="Interfaces">インターフェイス</h2> + +<dl> + <dt>{{domxref("NetworkInformation")}}</dt> + <dd>端末がネットワーク通信に使用している接続方法の情報を提供します。また、接続タイプが変更された場合に、スクリプトへ通知する手段も提供します。 <code>NetworkInformation</code> インターフェイスはインスタンス化できません。代わりに、 {{domxref("Navigator")}} インターフェイスを通してアクセスします。</dd> +</dl> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('Network Information', '', 'Network Information API')}}</td> + <td>{{Spec2('Network Information')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<h3 id="NetworkInformation">NetworkInformation</h3> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("api.NetworkInformation")}}</p> + +<h3 id="Navigator.connection">Navigator.connection</h3> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("api.Navigator.connection")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{spec("http://w3c.github.io/netinfo/", "Network Information API Specification", "ED")}}</li> + <li><a href="/ja/docs/Online_and_offline_events">Online and offline events</a></li> + <li>{{domxref("Navigator.connection", "window.navigator.connection")}}</li> +</ul> |