Android

时间:2016-08-18 08:00:45

标签: javascript android html5 video.js

我正在开发一个支持video-js

的广告的html5播放器

因为我知道它在iOS中不起作用,在Android上是否相同?

到目前为止,我已经尝试过这些在Android中自动播放没有运气

HTML

  <video id="inReadPlayer" autoplay loop="loop" 
    controls preload="auto" class="video-js vjs-default-skin" width="640"
height="360" > <source src="'+videoSource+'" type="video/mp4">
  </video>

JS

 var player = videojs('inReadPlayer', { /* Options */ }, function() {
            this.play();
            this.on('ended', function() {

            });
 });

提前致谢

1 个答案:

答案 0 :(得分:0)

试试这个:

&#13;
&#13;
.post_custom_fields > span { 
    clear:both;
    display: block;
    margin: 2px 0;
}
&#13;
var videoplayer = document.getElementById('inReadPlayer')
videoplayer.addEventListener("load", function() {
videoplayer.play();
});
videoplayer.onended = function() {
source.setAttribute('src', 'MAINVIDEO.mp4');

};
&#13;
&#13;
&#13;

  

请注意,此代码段无法正常工作,因为没有视频源