暂停/播放视频javascript在wordpress中不起作用

时间:2017-09-26 11:27:12

标签: javascript jquery html

我在搜索切换标签时搜索暂停/播放视频的方法很多,我尝试使用此代码,但它不起作用 控制台中没有错误,我无法找出问题所在

var video = document.getElementById("myvideo");
var documentTitle = document.title;

var updateTitleForVideo = function(state) {
  if (state === '') {
    document.title = documentTitle;
    return;
  }
  document.title = documentTitle + '[' + state + ']';
};

video.onpause = function() {
  updateTitleForVideo('Paused');
};

video.onplay = function() {
  updateTitleForVideo('');
}

document.addEventListener('visibilitychange', function() {
  var state = document.visibilityState;
  if (!video.paused) {
    if (state === 'hidden') {
      video.pause();
      updateTitleForVideo();
    }
  }
});

0 个答案:

没有答案