1

我正在使用SoundJS播放音乐。如何检测歌曲何时结束?

SoundJS 可以检测事件,歌曲结束时是否有事件?像这样的东西:

var songInstance = createjs.Sound.play("sound");
songInstance.on("_SONG_ENDED_", function(){
     //do something after song has ended
});
4

1 回答 1

3

我认为您可以根据此站点执行以下代码:http: //createjs.com/docs/soundjs/classes/Sound.html

instance.on("complete", this.handleComplete, this);
于 2016-12-19T21:55:53.940 回答