aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2022-03-18 00:13:02 +0000
committerMDN <actions@users.noreply.github.com>2022-03-18 00:13:02 +0000
commitc32682b053bad2602a8c910cc7e4106acaefade1 (patch)
treeedc3e9188c4eb62c657ddecdec79ad4bf42344fd /files/ja/web
parent8bc505c3f1b16913123132f74d8cf20432bddf79 (diff)
downloadtranslated-content-c32682b053bad2602a8c910cc7e4106acaefade1.tar.gz
translated-content-c32682b053bad2602a8c910cc7e4106acaefade1.tar.bz2
translated-content-c32682b053bad2602a8c910cc7e4106acaefade1.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/api/mediastreamtrack/ended_event/index.html (renamed from files/ja/web/api/mediastreamtrack/onended/index.html)3
-rw-r--r--files/ja/web/api/mediastreamtrack/onmute/index.html57
-rw-r--r--files/ja/web/api/mediastreamtrack/onunmute/index.html53
-rw-r--r--files/ja/web/api/mediastreamtrack/overconstrained_event/index.html (renamed from files/ja/web/api/mediastreamtrack/onoverconstrained/index.html)3
-rw-r--r--files/ja/web/api/window/ondevicemotion/index.html59
5 files changed, 4 insertions, 171 deletions
diff --git a/files/ja/web/api/mediastreamtrack/onended/index.html b/files/ja/web/api/mediastreamtrack/ended_event/index.html
index b41beb67cb..b5a1bb7a2a 100644
--- a/files/ja/web/api/mediastreamtrack/onended/index.html
+++ b/files/ja/web/api/mediastreamtrack/ended_event/index.html
@@ -1,7 +1,8 @@
---
title: MediaStreamTrack.onended
-slug: Web/API/MediaStreamTrack/onended
+slug: Web/API/MediaStreamTrack/ended_event
translation_of: Web/API/MediaStreamTrack/onended
+original_slug: Web/API/MediaStreamTrack/onended
---
<p>{{ APIRef("Media Capture and Streams") }}</p>
diff --git a/files/ja/web/api/mediastreamtrack/onmute/index.html b/files/ja/web/api/mediastreamtrack/onmute/index.html
deleted file mode 100644
index 0707c39193..0000000000
--- a/files/ja/web/api/mediastreamtrack/onmute/index.html
+++ /dev/null
@@ -1,57 +0,0 @@
----
-title: MediaStreamTrack.onmute
-slug: Web/API/MediaStreamTrack/onmute
-translation_of: 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 = "&amp;#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/web/api/mediastreamtrack/onunmute/index.html b/files/ja/web/api/mediastreamtrack/onunmute/index.html
deleted file mode 100644
index 9b3e5b7d6d..0000000000
--- a/files/ja/web/api/mediastreamtrack/onunmute/index.html
+++ /dev/null
@@ -1,53 +0,0 @@
----
-title: MediaStreamTrack.onunmute
-slug: Web/API/MediaStreamTrack/onunmute
-translation_of: 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/web/api/mediastreamtrack/onoverconstrained/index.html b/files/ja/web/api/mediastreamtrack/overconstrained_event/index.html
index d6c1333cac..e141ad3ac9 100644
--- a/files/ja/web/api/mediastreamtrack/onoverconstrained/index.html
+++ b/files/ja/web/api/mediastreamtrack/overconstrained_event/index.html
@@ -1,7 +1,8 @@
---
title: MediaStreamTrack.onoverconstrained
-slug: Web/API/MediaStreamTrack/onoverconstrained
+slug: Web/API/MediaStreamTrack/overconstrained_event
translation_of: Web/API/MediaStreamTrack/onoverconstrained
+original_slug: Web/API/MediaStreamTrack/onoverconstrained
---
<p>{{ APIRef("Media Capture and Streams") }}</p>
diff --git a/files/ja/web/api/window/ondevicemotion/index.html b/files/ja/web/api/window/ondevicemotion/index.html
deleted file mode 100644
index aefd927e24..0000000000
--- a/files/ja/web/api/window/ondevicemotion/index.html
+++ /dev/null
@@ -1,59 +0,0 @@
----
-title: Window.ondevicemotion
-slug: Web/API/Window/ondevicemotion
-tags:
- - API
- - Device Orientation
- - Event Handler
- - Mobile
- - Motion
- - Orientation
- - Property
- - Reference
- - イベントハンドラー
- - プロパティ
- - モバイル
- - 向き
- - 端末の向き
-translation_of: 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>