Can play forever songs

This commit is contained in:
Pierre HUBERT 2019-01-26 15:33:43 +01:00
parent 289a66e55b
commit 35c4597017

View File

@ -29,6 +29,23 @@ class SongPlayer {
* Play audio just once
*/
playOnce(){
this.songElem.loop = false;
this.songElem.play();
}
/**
* Play song forever
*/
playForever(){
this.songElem.loop = true;
this.songElem.play();
}
/**
* Stop song
*/
stop(){
this.songElem.pause();
this.songElem.currentTime = 0;
}
}