p5.js | removeCue()函数
removeCue()函数是 p5.js 库中的内置函数。此函数用于删除由 addCue()函数指定的任务。该任务将被选为 addCue()函数给出的 id。这里的 id 是提示的索引号 0 表示第一个事件,1 表示第二个事件,依此类推。
句法:
removeCue(id)
注意:只有当声音库包含在index.html文件的 head 部分中时,所有与声音相关的功能才有效。
参数:此函数接受一个如上所述和如下所述的参数:
- id:此参数包含一个整数,定义了由 addCue()函数返回的提示的 id
下面的示例说明了 JavaScript 中的 p5.remove()函数:
例子:
var sound;
function setup() {
// Initialize sound
sound = createAudio('song.mp3');
// Playing the sound
sound.play();
// event define after end of audio
sound.addCue(5, geeks);
sound.addCue(10, pse);
// removing the 1st addCue event
sound.removeCue(0);
}
//event that will occur in 5 sec
function geeks(dur) {
alert('addCue function running');
}
//event that will occur in 10 sec
function pse() {
sound.pause();
}
在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
支持的浏览器: p5.js removeCue()函数支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- 火狐
- 苹果浏览器
- 歌剧