AudioScheduledSourceNode.stop() - Web API 接口参考 编辑
AudioScheduledSourceNode
上的stop()
方法将声音安排在指定的时间停止播放。如果没有指定时间,声音将立即停止播放。
每次在同一个节点上调用 stop()
时,指定的时间将替换任何未发生的计划停止时间。如果节点已经停止,则此方法无效。
注意: 如果计划的停止时间发生在节点计划的开始时间之前,则节点永远不会开始运行。
语法
AudioScheduledSourceNode.stop([when]);
参数
when
可选- 声音停止播放的时间,单位为秒。 这个值在
AudioContext
用于其currentTime
属性的同一时间坐标系统中指定。 省略这个参数,设置为0或者负值都会立即停止播放。
Return value
Exceptions
InvalidStateNode
- 节点还没有通过调用
start()
方法被播放. RangeError
- 当
when
指定为负值时。
Example
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 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);
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API stop() | Working Draft |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论