aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/pannernode/coneinnerangle/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/pannernode/coneinnerangle/index.html')
-rw-r--r--files/ja/web/api/pannernode/coneinnerangle/index.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/files/ja/web/api/pannernode/coneinnerangle/index.html b/files/ja/web/api/pannernode/coneinnerangle/index.html
new file mode 100644
index 0000000000..f5b4f3216d
--- /dev/null
+++ b/files/ja/web/api/pannernode/coneinnerangle/index.html
@@ -0,0 +1,65 @@
+---
+title: PannerNode.coneInnerAngle
+slug: Web/API/PannerNode/coneInnerAngle
+tags:
+ - API
+ - PannerNode
+ - Property
+ - Reference
+ - Web Audio API
+ - coneInnerAngle
+translation_of: Web/API/PannerNode/coneInnerAngle
+---
+<p>{{ APIRef("Web Audio API") }}</p>
+
+<div>
+<p>{{ domxref("PannerNode") }} インターフェイスの <code>coneInnerAngle</code> プロパティは、音量が低減しない範囲を内側にもつコーンの角度が、実数値 (倍精度) で参照できます。</p>
+
+<p><code>coneInnerAngle</code> プロパティのデフォルトの値は <code>360</code> で、無指向性の音源に適しています。</p>
+</div>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="brush: js notranslate">var audioCtx = new AudioContext();
+var panner = audioCtx.createPanner();
+panner.coneInnerAngle = 360;</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p>倍精度浮動小数点数。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>{{page("/ja/docs/Web/API/PannerNode/orientationX","Example")}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">策定状況</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('Web Audio API', '#dom-pannernode-coneinnerangle', 'coneInnerAngle')}}</td>
+ <td>{{Spec2('Web Audio API')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
+
+<div>
+
+
+<p>{{Compat("api.PannerNode.coneInnerAngle")}}</p>
+</div>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web_Audio_API/Using_Web_Audio_API">Using the Web Audio API</a></li>
+ <li><a href="https://developer.mozilla.org/ja/docs/Web/API/Web_Audio_API/Web_audio_spatialization_basics">Web Audio spatialisation basics</a></li>
+</ul>