“JS Sound” Respostas de código

JS Sound

var audio = new Audio('assets/audio.mp3');

> Play
audio.play();
> Stop
sound.pause();
> Back to start
sound.currentTime = 0;
Code Cat

JS Play Sound

var audio = new Audio('audio_file.mp3');
audio.play();
Obnoxious Opossum

JS Play Sound

const sound = require("sound-play");
sound.play("file.mp3");
Aggressive Antelope

Respostas semelhantes a “JS Sound”

Perguntas semelhantes a “JS Sound”

Procure respostas de código populares por idioma

Procurar outros idiomas de código