mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
64 lines
1.4 KiB
JavaScript
Executable File
64 lines
1.4 KiB
JavaScript
Executable File
setup = false;
|
|
function jazz_setup()
|
|
{
|
|
console.log(setup);
|
|
document.getElementsByClassName("ytplayer")[0].style.display = "none";
|
|
if(!setup)
|
|
{
|
|
jplayer = new YT.Player('jplayer', {
|
|
height: window.height*0.75,
|
|
width: window.width*0.6,
|
|
videoId: response,
|
|
playerVars: { rel:"0", wmode:"transparent", controls: "0" , iv_load_policy: "3", theme:"light", color:"white"},
|
|
events: {
|
|
'onReady': onJazzReady,
|
|
'onStateChange': onJazzState
|
|
}
|
|
});
|
|
setup = true;
|
|
}else if(setup)
|
|
{
|
|
console.log(1234567890);
|
|
jplayer.playVideo();
|
|
}
|
|
document.getElementsByClassName("jp")[0].style.display = "inline";
|
|
|
|
}
|
|
|
|
function pauseJazz()
|
|
{
|
|
jplayer.pauseVideo();
|
|
}
|
|
|
|
function onJazzState(state)
|
|
{
|
|
if(state.data == 0)
|
|
{
|
|
jplayer.loadVideoById("0fYL_qiDYf0");
|
|
jplayer.playVideo();
|
|
}
|
|
}
|
|
|
|
function onJazzReady(event) {
|
|
//ytplayer = document.getElementById("myytplayer");
|
|
// ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
|
|
//ytplayer.addEventListener("onError", "errorHandler");
|
|
getTime();
|
|
if(!window.mobilecheck())
|
|
{
|
|
$("#jplayer").css("opacity", "1");
|
|
$("#controls").css("opacity", "1");
|
|
$(".playlist").css("opacity", "1");
|
|
//$("#player").fadeIn();
|
|
jplayer.loadVideoById("0fYL_qiDYf0");
|
|
jplayer.playVideo();
|
|
}
|
|
readyLooks();
|
|
initSlider();
|
|
//durationFixer = setInterval(durationSetter, 1000);
|
|
}
|
|
|
|
$(document).ready(function()
|
|
{
|
|
jazz_setup();
|
|
}); |