Files
Maphre-PLD-2026/contenido/24.html
T
2026-06-04 12:20:40 -06:00

94 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.sec0 {
background-image: url(img/fondos/bg12.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.bubble {
width: 100%; height: auto; background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5, #f1f1f1, #ededed, #e9e9e9);
border-top-left-radius: 25px; border-top-right-radius: 25px; border-bottom-right-radius: 25px;
}
.paper { position: relative; width: 590px; margin: auto;}
.txt_paper { position: absolute; top: 158px; left: 15px; padding: 0 1rem;}
.anim { opacity: 0; }
</style>
</head>
<body>
<div class="section_charge bg w-100 h-100">
<div class="d-none">
<img src="img/fondos/bg12.jpg" alt="">
</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 mx-auto anim anim2"></div>
</div>
<div class="col-7">
<h5 class="title_ text-center py-2 anim anim1"><b>Operaciones relevantes</b></h5>
<div class="paper mt-3 anim anim1">
<img src="img/41.png" alt="">
<div class="txt_paper">
<p>
El segundo caso que me compartes corresponde a una <b>operación relevante</b>, ya que esta se caracteriza por ser
<b>realizada en efectivo</b> por un <b>monto igual o superior</b> a los USD <b>7,500</b>.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
</html>
<script>
jQuery(document).ready(function($) {
instruccion(0);
var Audio_17 = newSound("audio/Audio_17_Marcos.mp3");
Audio_17.on("end", function() {
$('.personaje_m_0').removeClass('play');
fn_end();
});
$(".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_17);
$('.personaje_m_0').addClass('play');
}
function fn_end(){
instruccion(1);
}
});
</script>