GrandTabernacleAutoVI/public_html/js/sound.js
2023-12-08 18:29:33 +01:00

12 lines
No EOL
224 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()
}
}