diff options
author | MDN <actions@users.noreply.github.com> | 2022-03-18 00:13:02 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2022-03-18 00:13:02 +0000 |
commit | c32682b053bad2602a8c910cc7e4106acaefade1 (patch) | |
tree | edc3e9188c4eb62c657ddecdec79ad4bf42344fd /files/ja/conflicting/web | |
parent | 8bc505c3f1b16913123132f74d8cf20432bddf79 (diff) | |
download | translated-content-c32682b053bad2602a8c910cc7e4106acaefade1.tar.gz translated-content-c32682b053bad2602a8c910cc7e4106acaefade1.tar.bz2 translated-content-c32682b053bad2602a8c910cc7e4106acaefade1.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ja/conflicting/web')
3 files changed, 172 insertions, 0 deletions
diff --git a/files/ja/conflicting/web/api/mediastreamtrack/mute_event/index.html b/files/ja/conflicting/web/api/mediastreamtrack/mute_event/index.html new file mode 100644 index 0000000000..42f6afd740 --- /dev/null +++ b/files/ja/conflicting/web/api/mediastreamtrack/mute_event/index.html @@ -0,0 +1,58 @@ +--- +title: MediaStreamTrack.onmute +slug: conflicting/Web/API/MediaStreamTrack/mute_event +translation_of: Web/API/MediaStreamTrack/onmute +original_slug: Web/API/MediaStreamTrack/onmute +--- +<p>{{ APIRef("Media Capture and Streams") }}</p> + +<p><code><strong>MediaStreamTrack.onmute</strong></code>イベントハンドラは{{event("mute")}}イベントを受け取った時に呼び出されるプロパティです。このイベントは、トラックが一時的にデータを提供することができない時に発生します。</p> + +<h2 id="文法">文法</h2> + +<pre class="syntaxbox"><em>track</em>.onmute = <em>function</em>; +</pre> + +<h3 id="値">値</h3> + +<p>{{event("mute")}}イベントが発生した時の実行する処理の関数を<a href="/ja/docs/Web/API/EventHandler" rel="nofollow" title="この項目についての文書はまだ書かれていません。書いてみませんか?"><code>EventHandler</code></a>として設定します。このイベントハンドラーの関数は1つのパラメータ持ちます。このパラメータはイベントオブジェクトであり、単純な<a href="/ja/docs/Web/API/Event" title="Event インターフェイスは、DOM で発生するイベントを表します。ユーザーによって発生するイベント (マウスやキーボードのイベント) もありますし、API によって発生するイベント (アニメーションの実行が完了したことを示すイベントや、動画再生が一時停止したイベントなど) もあります。さまざまな型のイベントがあり、一部のイベントは基底の Event インターフェイスを基にした他のインターフェイスを使用します。Event 自体は、すべてのイベントで共通のプロパティやメソッドを持ちます。"><code>Event</code></a>のオブジェクトです。</p> + +<h2 id="例">例</h2> + +<p>この例では、「ミュートされたスピーカー」絵文字を要素のコンテンツHTMLに設定するため、ミュートハンドラーが確立されています。</p> + +<pre class="brush: js">myTrack.onmute = function(evt) { + playStateIcon.innerHTML = "&#1F507;"; +}; +</pre> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table" style="height: 49px; width: 1000px;"> + <thead> + <tr> + <th scope="col">仕様</th> + <th scope="col">状況</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('Media Capture', '#widl-MediaStreamTrack-onmute', 'MediaStreamTrack.onmute') }}</td> + <td>{{ Spec2('Media Capture') }}</td> + <td>初版</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザ互換性">ブラウザ互換性</h2> + + + +<p>{{Compat("api.MediaStreamTrack.onmute")}}</p> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>{{event("mute")}} イベント、およびその型である{{domxref("Event")}}。</li> +</ul> diff --git a/files/ja/conflicting/web/api/mediastreamtrack/unmute_event/index.html b/files/ja/conflicting/web/api/mediastreamtrack/unmute_event/index.html new file mode 100644 index 0000000000..9735d8bf34 --- /dev/null +++ b/files/ja/conflicting/web/api/mediastreamtrack/unmute_event/index.html @@ -0,0 +1,54 @@ +--- +title: MediaStreamTrack.onunmute +slug: conflicting/Web/API/MediaStreamTrack/unmute_event +translation_of: Web/API/MediaStreamTrack/onunmute +original_slug: Web/API/MediaStreamTrack/onunmute +--- +<p>{{ APIRef("Media Capture and Streams") }}</p> + +<p><code><strong>MediaStreamTrack.onunmute</strong></code>イベントハンドラは{{event("unmute")}}イベントを受け取った時に呼び出されるプロパティです。このイベントは、トラックが再びデータを送信できるようになった時に発生します。</p> + +<h2 id="文法">文法</h2> + +<pre class="eval"><em>track</em>.onunmute = <em>function</em>; +</pre> + +<h3 id="値">値</h3> + +<ul> + <li><code>function</code>はユーザーが定義した関数の名前で末尾の<code>()</code>やパラメータを省略したもの、または、<code>function(event) {...}</code>の形式で表現された匿名関です。イベントハンドラは常に 、{{domxref("Event")}}型のイベントを含む1つのパラメータを持ちます。</li> +</ul> + +<h2 id="例">例</h2> + +<pre class="brush: js">dc.onunmute = function(ev) { alert("unmute event detected!"); }; +</pre> + +<h2 id="Specifications" name="Specifications">仕様</h2> + +<table class="standard-table" style="height: 49px; width: 1000px;"> + <thead> + <tr> + <th scope="col">仕様</th> + <th scope="col">状況</th> + <th scope="col">コメント</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('Media Capture', '#widl-MediaStreamTrack-onunmute', 'MediaStreamTrack.onunmute') }}</td> + <td>{{ Spec2('Media Capture') }}</td> + <td>初版</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザ互換性">ブラウザ互換性</h2> + +<p>{{Compat("api.MediaStreamTrack.onunmute")}}</p> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>{{event("unmute")}}イベント、およびその型である{{domxref("Event")}}。</li> +</ul> diff --git a/files/ja/conflicting/web/api/window/devicemotion_event/index.html b/files/ja/conflicting/web/api/window/devicemotion_event/index.html new file mode 100644 index 0000000000..7c0b782d06 --- /dev/null +++ b/files/ja/conflicting/web/api/window/devicemotion_event/index.html @@ -0,0 +1,60 @@ +--- +title: Window.ondevicemotion +slug: conflicting/Web/API/Window/devicemotion_event +tags: + - API + - Device Orientation + - Event Handler + - Mobile + - Motion + - Orientation + - Property + - Reference + - イベントハンドラー + - プロパティ + - モバイル + - 向き + - 端末の向き +translation_of: Web/API/Window/ondevicemotion +original_slug: Web/API/Window/ondevicemotion +--- +<div>{{APIRef("Device Orientation Events")}}</div> + +<p>Windows に対して送信される {{domxref("Window/devicemotion_event", "devicemotion")}} イベントのためのイベントハンドラーです。</p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox">window.ondevicemotion = <var>funcRef</var>;</pre> + +<p><code>funcRef</code> のところは関数への参照です。この関数は発生した動きを説明する {{DOMxRef("DeviceMotionEvent")}} オブジェクトを受け取ります。</p> + +<h2 id="Specification" name="Specification">仕様書</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("Device Orientation")}}</td> + <td>{{Spec2("Device Orientation")}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat("api.Window.ondevicemotion")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>{{domxref("Window/devicemotion_event", "devicemotion")}}</li> + <li>{{DOMxRef("DeviceMotionEvent")}}</li> + <li><a href="/ja/docs/Web/API/Detecting_device_orientation">端末の向きの検出</a></li> +</ul> |