update
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
.sec0 {
|
||||
background-image: url(img/fondos/bg3.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
.sec0 .card { border:none; border-radius: 25px; background-image: linear-gradient(to right, #b9230f, #ad210e, #a21e0d, #961c0c, #8b1a0b); }
|
||||
.cuadro_navegacion { background-color: #00263a!important; border-radius: 25px; }
|
||||
.cuadro_navegacion .card-header { border: 1px solid #657380; }
|
||||
.main-txt { margin-left: -140px; }
|
||||
.anim { opacity: 0; }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="section_charge bg w-100 h-100">
|
||||
<div class="d-none"></div>
|
||||
<section id="sec0" class="sec0 w-100 h-100">
|
||||
<div class="container h-100">
|
||||
<div class="row justify-content-center align-items-center h-100">
|
||||
<div class="col-4 align-self-end">
|
||||
<div class="personaje_m_0"></div>
|
||||
</div>
|
||||
<div class="col-7">
|
||||
<div class="card shadow p-3 anim anim1 text-white">
|
||||
<p class="text-center">Los <b>temas</b> que revisaremos a lo largo del curso son los siguientes:</p>
|
||||
<ul class="text-left">
|
||||
<li>Aspectos generales</li>
|
||||
<li>Conceptos previstos en las nuevas disposiciones</li>
|
||||
<li>Aspectos centrales en las nuevas Disposiciones de PLD/FT</li>
|
||||
<li>Operaciones Inusuales, Relevantes e Internas Preocupantes</li>
|
||||
<li>Estructuras internas</li>
|
||||
<li>Reservas de confidencialidad</li>
|
||||
<li>Otras obligaciones</li>
|
||||
<li>Intercambio de información</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<script>
|
||||
jQuery(document).ready(function($) {
|
||||
instruccion(0);
|
||||
var Audio_3 = newSound("audio/Audio_3_Marcos.mp3");
|
||||
Audio_3.on("end", function() {
|
||||
fn_end();
|
||||
$('.personaje_m_0').removeClass('play');
|
||||
});
|
||||
|
||||
$(".layer-load").show();
|
||||
$('.section_charge').waitForImages({
|
||||
finished: function() {
|
||||
$(".section_charge").css("visibility", "visible");
|
||||
$(".wloader").hide();
|
||||
fn_animate();
|
||||
|
||||
},
|
||||
each: function(loaded, count, success) {
|
||||
var total = Math.floor((loaded * 100) / count);
|
||||
$(".wloader").show();
|
||||
|
||||
},
|
||||
waitForAll: true
|
||||
});
|
||||
|
||||
|
||||
function fn_animate(){
|
||||
var tl = new TimelineMax();
|
||||
tl.fromTo(".anim2",1,{opacity:0, x:-150},{opacity:1, x:0, ease:Expo.easeInOut});
|
||||
tl.fromTo(".anim1",.7,{opacity:0, y:-250},{opacity:1, y:0, ease:Expo.easeInOut});
|
||||
tl.call(fn_firstAudio);
|
||||
}
|
||||
|
||||
function fn_firstAudio(){
|
||||
stopAllSoundsAndPlay(Audio_3);
|
||||
$('.personaje_m_0').addClass('play');
|
||||
}
|
||||
|
||||
function fn_end(){
|
||||
instruccion(1);
|
||||
}
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user