GrandTabernacleAutoVI/public_html/js/sound.js

12 lines
No EOL
226 B
JavaScript

class Sound{
constructor(url){
this.sound = new Audio(url);
this.sound.type = "audio/mp3";
}
play(){
//this.sound.pause()
this.sound.currentTime=0;
this.sound.play()
}
}