welcomeVideo

功能描述

APP启动欢迎页视频广告,用例见 welcomeVideo.html

快速使用

下载模块文件中的welcomeVideo.html到项目根目录,修改文件里面的视频文件, 或者使用image/example.mp4示例文件

可以使用模块文件包里面的index.html进行测试

root页面进行下面监听,视频播放完或者用户点击跳过都会进入该事件的回调方法

  1. api.addEventListener({
  2. name: 'welcomeVideo'
  3. }, function(ret, err) {
  4. alert('结束视频,进入首页');
  5. });

然后打开welcomeVideo.html

  1. api.openFrame({
  2. name: 'main',
  3. url: 'welcomeVideo.html',
  4. bounces: false,
  5. rect: {
  6. x: 0,
  7. y: 0,
  8. w: 'auto',
  9. h: 'auto',
  10. }
  11. });