我一直在嘗試下午的大部分時間,但只是不能得到這個工作。我試圖讓玩家JW與V7的fancybox工作3JW播放器7與FancyBox 3集成
到目前爲止的代碼。該工程的fancybox在覆蓋方面,但視頻沒有顯示
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<link href="jquery.fancybox.css" rel="stylesheet">
<script src="jquery.fancybox.js"></script>
<script src="jwplayer-7.9.3.js"></script>
<script>jwplayer.key="key-in-here=="</script>
</head>
<body>
<a class="jwVideo" href="https://path-to-file.mp4">Preview</a>
<script>
$(function() {
$(".jwVideo").click(function(event) { //select class attribute jwVideo assigned to a tag
$.fancybox.open({
content: '<div id="video_container">Loading the player ...</div>',
afterShow: function(){
var playerInstance = jwplayer("video_container");
playerInstance.setup({
file: "http://path-to-s3-file.mp4"
});
}
});
event.preventDefault(); =
});
});
</script>
會超欣賞一些幫助。謝謝。
也許這掛'='在'event.preventDefault(); ='正在製造麻煩 – GavinBrelstaff
這不是我的實際代碼,而是我在那裏的錯,對不起!任何其他想法? p.s感謝您的快速回復。 –