OscillatorNode.detune - Web API 接口参考 编辑
OscillatorNode
的 detune 属性的接口
是 a-rate AudioParam
,代表振荡频率的失谐量(cents)。
语法
var oscillator = audioCtx.createOscillator();
oscillator.detune.value = 100; // value in cents
Note: 虽然返回的 AudioParam
是只读的,但是它表示的值不是。
值
一个 a-rate AudioParam
的值
示例
下面的例子使用 AudioContext
创建了一个 oscillator node。 这是已经在运行的例子,查看 Violent Theremin demo (see app.js 是相关源码)。
// create web audio api context
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// create Oscillator node
var oscillator = audioCtx.createOscillator();
oscillator.type = 'square';
oscillator.frequency.value = 440; // value in hertz
oscillator.detune.value = 100; // value in cents
oscillator.start();
说明
Specification | Status | Comment |
---|---|---|
Web Audio API detune | Working Draft |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 14 webkit | (Yes) | 23 | 未实现 | 15 webkit 22 (unprefixed) | 6 webkit |
Feature | Android | Chrome | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | 未实现 | 28 webkit | (Yes) | 25 | 1.2 | 未实现 | 未实现 | 6 webkit |
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论