La función clearCues() es una función incorporada en la biblioteca p5.js. Esta función se utiliza para eliminar todas las tareas especificadas por la función addCue().
sintaxis:
clearCues()
Nota: Todas las funciones relacionadas con el sonido solo funcionan cuando la biblioteca de sonido está incluida en la sección principal del archivo index.html .
Parámetro: Esta función no acepta ningún parámetro:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Los siguientes ejemplos ilustran la función p5.clearCue() en JavaScript:
Ejemplo:
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); // clearing all the addCue event sound.clearCues(); } //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(); } |
Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Navegadores compatibles: los navegadores compatibles con la función p5.js clearCues() se enumeran a continuación:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA