我在视频暂停时显示广告。那么我想要的是,当点击按钮时,此广告消失,视频恢复。这是我到目前为止所做的。
<span onclick="closeAndPlay;" class="close-play"> x </span>
function closeAndPlay() {
var adDiv = document.getElementById('ad-div');
console.log('test');
if (adDiv) {
adDiv.parentNode.removeChild(adDiv);
}
}
但是没有找到视频播放的部分
答案 0 :(得分:1)
您可以使用javascript api显示广告。
jwplayer().onPause(function(){/*display ad*/})
添加到你的closeAndPlay()
function closeAndPlay() {
/*your function to hide ad*/"
jwplayer().play(); //resume video
}