--- title: AudioScheduledSourceNode.stop() slug: Web/API/AudioScheduledSourceNode/stop translation_of: Web/API/AudioScheduledSourceNode/stop ---
{{ APIRef("Web Audio API") }}
{{domxref("AudioScheduledSourceNode")}} 上的stop()
方法将声音安排在指定的时间停止播放。如果没有指定时间,声音将立即停止播放。
每次在同一个节点上调用 stop()
时,指定的时间将替换任何未发生的计划停止时间。如果节点已经停止,则此方法无效。
注意: 如果计划的停止时间发生在节点计划的开始时间之前,则节点永远不会开始运行。
AudioScheduledSourceNode.stop([when]);
when
{{optional_inline}}{{jsxref("undefined")}}
InvalidStateNode
RangeError
when
指定为负值时。This example demonstrates starting an oscillator node, scheduled to begin playing at once and to stop playing in one second. The stop time is determined by taking the audio context's current time from {{domxref("AudioContext.currentTime")}} and adding 1 second.
context = new AudioContext(); osc = context.createOscillator(); osc.connect(context.destination); /* Let's play a sine wave for one second. */ osc.start(); osc.stop(context.currentTime + 1);
Specification | Status | Comment |
---|---|---|
{{SpecName('Web Audio API', '#widl-AudioScheduledSourceNode-stop-void-double-when', 'stop()')}} | {{Spec2('Web Audio API')}} |
{{Compat("api.AudioScheduledSourceNode.stop")}}