GrandTabernacleAutoVI/public_html/js/sound.js
Killian Marty 5759f39bb8 final code
2024-01-01 12:55:28 +01:00

13 lines
No EOL
260 B
JavaScript

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