我正在使用JW播放器。我的主页上有一些叠加的视频部分。覆盖后面的视频不应该自动启动。它应该只在我点击该叠加层时播放。但是目前当我正在刷新(F5,ctrl + R,ctrl + F5等等)视频开始播放时。可能是什么问题?
这是我的html和js:
<div id="mySingleVideoWrapper">
<video id="myVideoFrame">
<source src="here is my video source" type="video/mp4">
</video>
</div>
var playerInstance = jwplayer("mySingleVideoWrapper").setup({
image: {my poster image source here},
width: "100%",
fallback:false,
aspectratio: "16:9",
logo: {
hide: true
},
autostart: false,
sources: [
{
file: {my video source here},
}
],
skin: {
active: "#f67777",
name: "glow"
}
});
jQuery(".overlay").click(function(){
var getState = playerInstance.getState();
jQuery(".overlay").fadeOut(function(){
jwplayer().play();
});
});