Apagar las luces para ver vídeos



Antes de </head>

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function(){
$("#oscuridad").css("height", $(document).height()).hide();
$(".lightSwitcher").click(function(){
$("#oscuridad").toggle();
if ($("#oscuridad").is(":hidden"))
$(this).html("Apagar la luz").removeClass("turnedOff");
else
$(this).html("Encender la luz").addClass("turnedOff");
});
});
//]]>
</script>


Antes de ]]></b:skin>


/* Apagar las luces
----------------------------------------------- */
#videoLuces {
position:relative;
z-index:102;
}
#apagador {
max-width:640px;
text-align:left;
position:relative;
height:25px;
display:block;
margin: 25px 0 0 60px;
}
.lightSwitcher {
position:absolute;
z-index:101;
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-L77yJdsqoeLl4aG0GKfPogWLwBtlE3RGQDTCj9h8fL7KRGMCm9mvajQTlxHWBGeaGaY1xb_1sun7V7Zxjbq_zO7Poww42edM7PWMMH0o8Tl84hUxZ3xgMm7tyEcvFrIs8oZm8WHdhhM/s16/luces-on.png);
background-repeat:no-repeat;
background-position:left;
padding: 0 0 0 20px;
outline:none;
text-decoration:none;
}
.lightSwitcher:hover {text-decoration:underline;}
.turnedOff {
color:#ffff00 !important;
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQXfMxQwVp2WaNcYh7stxHlA_fSwVa3lXDf1izUjT5fZwBjg5Xc_6RVEmqh0K8VSZ16YOKMieKoZUtwv-g8gkx0ps7d8XT0OTrSmEu1o-YpGtFBSwnjGauxkOvUkGtjuvWyUn-26ofEuw/s16/luces-off.png);
}
#oscuridad {
background:#000;
opacity:0.7; /* Opacidad de la pantalla */
filter:alpha(opacity=70); /* Opacidad de la pantalla */
position:absolute;
left:0;
top:0;
width:100%;
z-index:100;
}


Antes de </body> 


<div id='oscuridad'/>


Para añadir los vídeos:

<center>
<div id="apagador"><a class="lightSwitcher" href="javascript:void(0);">Apagar la luz</a></div>
<div id="videoLuces">
...Aquí tienes que poner el código del video...
</div>
</center> 

No hay comentarios:

Publicar un comentario