$(document).ready(function () { if (typeof DestaqueEventos === 'undefined' || !DestaqueEventos || !DestaqueEventos.length || DestaqueEventos.length == 0) return; for (var i = 0; i < DestaqueEventos.length; i++) { (function () { var d = document.getElementById(DestaqueEventos[i]); if (typeof d === 'undefined' || !d.Eventos || !d.Eventos.length || d.Eventos.length == 0) return; $(d).find(".Navegacao .Items a").each(function (f, e) { jQuery.preLoadImages(d.Eventos[f].ImagemTituloDestaque, d.Eventos[f].ImagemDestaque, d.Eventos[f].ImagemCartaz); $(this).click(function () { MudarEvento(d, f); }); }); var opcoes = { MutedClass: "Muted", UnmutedClass: "Unmuted" }; var estadoSomInicial = jQuery.Storage.get("PlayerMuted"); if (typeof estadoSomInicial === 'undefined' || estadoSomInicial == "1") estadoSomInicial = opcoes.UnmutedClass; else estadoSomInicial = opcoes.MutedClass; $(d).find(".Navegacao .Som").addClass(estadoSomInicial).click(function () { var estadoSomInicial = jQuery.Storage.get("PlayerMuted"); if (estadoSomInicial === 'undefined' || estadoSomInicial == "1") { if (playerDestaque != null) playerDestaque.mute(); $(this).removeClass(opcoes.MutedClass).addClass(opcoes.UnmutedClass); jQuery.Storage.set("PlayerMuted", "0"); } else { if (playerDestaque != null) playerDestaque.unMute(); $(this).removeClass(opcoes.UnmutedClass).addClass(opcoes.MutedClass); jQuery.Storage.set("PlayerMuted", "1"); } }) MudarEvento(d, -1); })(); } }); function MudarEvento(d, e) { if (popupMostrado) { //Se o popup estiver mostrado iremos aguardar que seja fechado //Para isto defenimos um timeout que irá ocorrer a cada meio segundo setTimeout(function () { MudarEvento(d, e); }, 500); return; } p = false; if (typeof e === 'undefined') { if (d.EventoActual + 1 == d.Eventos.length) e = 0; else e = d.EventoActual + 1; } if (d.EventoActual == e) { if (d.Eventos.length > 1 && (d.Eventos[e].ChaveVideo == '')) { clearTimeout(d.TimeOut); d.TimeOut = setTimeout(function () { MudarEvento(d) }, d.TempoVisualizacao * 1000); } return; } else if (e == -1) { p = true; e = 0; } if (d.Eventos.length > 1 && (d.Eventos[e].ChaveVideo == '')) { clearTimeout(d.TimeOut); } $($(d).find(".Navegacao .Items a")[d.EventoActual]).removeClass("Sel"); $(d).find(".Informacao .ImagemCartaz").stop().css({ opacity: '100' }).fadeOut("slow", function () { $(d).find(".Informacao .ImagemCartaz .Imagem").attr("title", d.Eventos[e].NomeEvento); $(d).find(".Informacao .ImagemCartaz .Imagem").attr("src", d.Eventos[e].ImagemCartaz); $(d).find(".Informacao .ImagemCartaz .TipoDestaque").attr("src", d.Eventos[e].ImagemTituloDestaque); $(d).find(".Informacao .ImagemCartaz .TipoDestaque").attr("title", d.Eventos[e].TipoDestaque); if (d.Eventos[e].ImagemTituloDestaque == '') $(d).find(".Informacao .ImagemCartaz .TipoDestaque").hide(); else $(d).find(".Informacao .ImagemCartaz .TipoDestaque").show(); $(this).fadeIn("slow"); }); $(d).find(".Informacao .Descritivo .Comprar").attr("href", d.Eventos[e].UrlComprar); $(d).find(".Informacao .Descritivo .Detalhe").attr("href", d.Eventos[e].UrlDetalhe); $(d).find(".Informacao .Descritivo .Data").stop().css({ opacity: '100' }).fadeOut("slow", function () { $(this).html(d.Eventos[e].Datas); $(this).fadeIn("slow"); }); $(d).find(".Apresentacao .DescritivoApres .Nome").stop().css({ opacity: '100' }).fadeOut("slow", function () { $(this).html(d.Eventos[e].NomeEventoAbreviado); $(this).fadeIn("slow"); }); $(d).find(".Apresentacao .DescritivoApres .Slogan").stop().css({ opacity: '100' }).fadeOut("slow", function () { $(this).html(d.Eventos[e].Slogan); $(this).fadeIn("slow"); }); if (d.Eventos[e].ChaveVideo != '') { var cb = function () { if ($("#" + d.VideoContainer).length > 0 && playerDestaque != null) { playerDestaque.stopVideo(); $(document.getElementById(d.VideoContainer)).empty(); $("#" + d.VideoContainer).remove(); playerDestaque = null; } $(d).find(".Apresentacao .ImagemDestaque .Video").append("
"); CarregarVideo(d, e); $(d).find(".Apresentacao .ImagemDestaque .Video").fadeIn("slow"); }; if (d.Eventos[d.EventoActual].ChaveVideo != '') { $(d).find(".Apresentacao .ImagemDestaque .Imagem").stop().css({ opacity: '100' }).hide(); $(d).find(".Apresentacao .ImagemDestaque .Video").stop().css({ opacity: '100' }).fadeOut("slow", function () { cb(); }); } else { $(d).find(".Apresentacao .ImagemDestaque .Imagem").stop().css({ opacity: '100' }).fadeOut("slow", function () { $(d).find(".Apresentacao .ImagemDestaque .Imagem").hide(); $(d).find(".Apresentacao .ImagemDestaque .Video").stop().css({ opacity: '100' }).show().fadeOut(0, function () { cb(); }); }); } } else { var cb = function () { $(d).find(".Apresentacao .ImagemDestaque .Imagem").attr("src", d.Eventos[e].ImagemDestaque); $(d).find(".Apresentacao .ImagemDestaque .Imagem").attr("title", d.Eventos[e].NomeEvento); $(d).find(".Apresentacao .ImagemDestaque .Imagem").fadeIn("slow"); d.TimeOut = setTimeout(function () { MudarEvento(d) }, d.TempoVisualizacao * 1000); }; if (d.Eventos[d.EventoActual].ChaveVideo != '') { $(".Apresentacao .ImagemDestaque .Video").show().stop().css({ opacity: '100' }).fadeOut("slow", function () { cb(); $(".Apresentacao .ImagemDestaque .Video").hide(); cb(); }); } else { $(".Apresentacao .ImagemDestaque .Imagem").show().stop().css({ opacity: '100' }).fadeOut("slow", function () { cb(); }); } } d.EventoActual = e; $($(d).find(".Navegacao .Items a")[d.EventoActual]).addClass("Sel"); } var playerDestaque = null; function CarregarVideo(d, e) { if (!((typeof YT !== "undefined") && YT && YT.Player)) { //Como o youtube não foi carregado esperamos mais um pouco setTimeout(function () { CarregarVideo(d, e); }, 500); return; } var playerId = d.VideoContainer; clearTimeout(d.TimeOut); var onStateChange = function (state) { clearTimeout(d.TimeOut); if (YT.PlayerState.PAUSED == state.data) { clearTimeout(d.TimeOut) = setTimeout(function () { MudarEvento(d); }, d.TempoVisualizacao * 1000); } else if (YT.PlayerState.ENDED == state.data) { MudarEvento(d); } }; playerDestaque = new YT.Player(playerId, { autohide: 1, height: '234', width: '424', rel: 0, playerVars: { 'autoplay': 1, 'controls': 0, 'rel': 0, 'showinfo': 0 }, videoId: d.Eventos[e].ChaveVideo, events: { 'onReady': function onPlayerReady(event) { var estadoSomInicial = jQuery.Storage.get("PlayerMuted"); if (typeof estadoSomInicial === 'undefined' || estadoSomInicial == "1") playerDestaque.unMute(); else playerDestaque.mute(); }, 'onStateChange': onStateChange } }); }