熱門文章

Ⓒegret.Video 用法

播放影片範例

let txt = new egret.TextField();
txt.text = 'click to play!';
txt.touchEnabled = true;
txt.addEventListener(egret.TouchEvent.TOUCH_TAP,()=>video.play(),this);
this.addChild(txt);
let video = new egret.Video();
video.fullscreen = false;
video.touchEnabled = true;
video.y = 50;
video.once(egret.TouchEvent.COMPLETE,()=>this.addChild(video),this);
video.load('resource/assets/movie.mp4');

沒有留言:

張貼留言