diff options
author | zzw <71685145+7ooz@users.noreply.github.com> | 2022-03-11 01:34:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 01:34:11 +0800 |
commit | 4aef8219eddf56bc1c2abfd6e8cdb1b4d291d891 (patch) | |
tree | dbc90290e3c3d2448712a9a418059f2608a26fdd /files | |
parent | 37949c8719dbef82d686266fb6268ca28375b27e (diff) | |
download | translated-content-4aef8219eddf56bc1c2abfd6e8cdb1b4d291d891.tar.gz translated-content-4aef8219eddf56bc1c2abfd6e8cdb1b4d291d891.tar.bz2 translated-content-4aef8219eddf56bc1c2abfd6e8cdb1b4d291d891.zip |
fix image position error (#4526)
Diffstat (limited to 'files')
-rw-r--r-- | files/zh-cn/web/api/audionode/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/audionode/index.html b/files/zh-cn/web/api/audionode/index.html index ef3ae65a0e..2361eda9f8 100644 --- a/files/zh-cn/web/api/audionode/index.html +++ b/files/zh-cn/web/api/audionode/index.html @@ -5,7 +5,7 @@ translation_of: Web/API/AudioNode --- <div>{{ APIRef("Web Audio API") }} {{SeeCompatTable}}</div> -<p><img alt="AudioNodes participating in an AudioContext create a audio routing graph." src="https://mdn.mozillademos.org/files/5081/WebAudioBasics.png" style="float: left; height: 260px; margin: 10px; width: 355px;"><strong><code>AudioNode</code></strong><strong> </strong>接口是一个处理音频的通用模块, 比如一个音频源 (e.g. 一个 HTML {{HTMLElement("audio")}} or {{HTMLElement("video")}} 元素), 一个音频地址或者一个中间处理模块 (e.g. 一个过滤器如 {{domxref("BiquadFilterNode")}}, 或一个音量控制器如 {{domxref("GainNode")}}).</p> +<p><img alt="AudioNodes participating in an AudioContext create a audio routing graph." src="https://mdn.mozillademos.org/files/5081/WebAudioBasics.png"><strong><code>AudioNode</code></strong><strong> </strong>接口是一个处理音频的通用模块, 比如一个音频源 (e.g. 一个 HTML {{HTMLElement("audio")}} or {{HTMLElement("video")}} 元素), 一个音频地址或者一个中间处理模块 (e.g. 一个过滤器如 {{domxref("BiquadFilterNode")}}, 或一个音量控制器如 {{domxref("GainNode")}}).</p> <p><code>一个AudioNode</code> 既有输入也有输出。输入与输出都有一定数量的通道。<em>只有一个输出而没有输入的</em> <code>AudioNode</code> 叫做音频源。</p> |