[]laya如何用audio播放音频?
private elentAutio: HTMLAudioElement;
constructor(){
super();
this.btn_play.on(Laya.Event.CLICK, this, this.onPlay);
this.elentAutio = <HTMLAudioElement>document.createElement('audio');
this.elentAutio.src="res/10.mp3";
}
onPlay():void{
this.elentAutio.play();
}
由于要播放一些跨域音频,所以想到用audio,但PC上正常,手机上不能播放。
constructor(){
super();
this.btn_play.on(Laya.Event.CLICK, this, this.onPlay);
this.elentAutio = <HTMLAudioElement>document.createElement('audio');
this.elentAutio.src="res/10.mp3";
}
onPlay():void{
this.elentAutio.play();
}
由于要播放一些跨域音频,所以想到用audio,但PC上正常,手机上不能播放。
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
Laya_XS
赞同来自: