0
我花了地獄6小時試圖查找故障導致我的視頻閃爍這樣的,作爲第二個錯誤,它只是不加載。我簡直驚呆了:X 這裏是我試過至今:巴吉視頻標籤
我的js文件,我懷疑可能會導致問題:
$(document).ready(function(){
$('.play').click(function() {
video = '<iframe width="600" height="375" frameborder="0" src="' + $('img').attr('data-video') + '"></iframe>';
$('.video').replaceWith(video);
});
});
var myVideo = document.getElementById("video1");
myVideo.style.marginLeft= "-20px";
var menu = document.getElementById("menu");
function playPause()
{
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}
function makeBig()
{
myVideo.height=325;
myVideo.width=650;
myVideo.style.marginLeft= "-35px";
menu.style.width='650px';
menu.style.marginLeft= "-35px";
}
function makeSmall()
{
myVideo.height=175;
myVideo.width=350;
myVideo.style.marginLeft= "-20px"; menu.style.width='350px';
menu.style.marginLeft= "115px";
}
function makeNormal()
{
myVideo.height=250;
myVideo.width=500;
myVideo.style.marginLeft= "-20px"; menu.style.width='500px';
menu.style.marginLeft= "40px";
}
附:不知何故,它在codepen的IDE上正常工作。
任何幫助將不勝感激。 謝謝!
我會建議您嘗試它沒有