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 に答える