139 lines
4.3 KiB
HTML
139 lines
4.3 KiB
HTML
<style>
|
|
.back0 {
|
|
background-image: url(img/bg02.jpg);
|
|
background-size: cover;
|
|
background-position: 12% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.back1 {
|
|
background-image: url(img/bg02a.jpg);
|
|
background-size: cover;
|
|
background-position: 12% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
/* .text-card {
|
|
background-color: rgba(255, 255, 255, .7);
|
|
border-radius: 15px;
|
|
box-shadow: 0 0 8px rgba(0, 0, 0, .5);
|
|
} */
|
|
|
|
.anim0 {
|
|
display: none;
|
|
}
|
|
|
|
.bg-purple-3 {
|
|
background: rgb(185, 115, 200, 0.30) !important;
|
|
}
|
|
|
|
@media(min-width: 768px) {
|
|
.back0 {
|
|
background-position: 28% 100%;
|
|
}
|
|
|
|
.text-card {
|
|
background-color: transparent;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
</style>
|
|
<div class='page-sco'>
|
|
<div class="sec_i0 back0 py-2 py-md-4 flex-fill d-flex flex-column justify-content-center align-items-center">
|
|
<div class='container'>
|
|
<div class='row justify-content-center align-items-center'>
|
|
<div class='col-12'>
|
|
<div class='row justify-content-center align-items-center mb-3'>
|
|
<div class="col-8 col-md-5 col-lg-6 mb-4 mb-md-0 text-center anim0" data-sal="slide-down">
|
|
<img src="img/02.0.png" class="img-fluid floating">
|
|
</div>
|
|
<div class="col-12 col-md-7 col-lg-6 text-center anim0" data-sal="slide-down">
|
|
<div class="d-inline-block position-relative">
|
|
<hr class="m-0 mb-2 opacity-100 border-top-2 text-gray-2">
|
|
<div class="text-card p-2 p-md-0">
|
|
<h2 class="text-secondary fw-bold">¿Qué es Papilocare®?</h2>
|
|
<p class="mb-0"><b>Papilocare<sup>®</sup></b> es una <b>solución diseñada para apoyar la reparación de
|
|
la zona
|
|
cervicovaginal</b> en mujeres con diagnóstico de VPH. Más adelante conocerás qué lo hace diferente
|
|
y
|
|
cómo actúa.</p>
|
|
</div>
|
|
<hr class="m-0 mt-2 opacity-100 border-top-2 text-gray-2">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="w-100 py-2 py-md-4 text-center sec_i1" style="display: none;">
|
|
<div class="btn-next-section d-inline-block animate__animated animate__pulse animate__infinite" data-sec="sec1"
|
|
data-audio="audiom03">
|
|
<img src="img/nSec.png" class="img-fluid">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="sec1" class='page-sco py-2 py-md-4 back1' style="display: none;">
|
|
<div class="container">
|
|
<div class="row justify-content-center align-items-center">
|
|
<div class="col-12">
|
|
<div class="row justify-content-center align-items-center">
|
|
<div class="col-12 col-md-7 col-xl-4 mb-4 mb-md-0" data-sal="zoom-in">
|
|
<h2 class="text-pink-1 text-center fw-bold">Presentación Comercial</h2>
|
|
<div class="card border-0 bg-purple-3">
|
|
<div class="card-body">
|
|
<p class="my-0">Caja con <b>7</b> tubos monodosis de 5 ml cada uno, con aplicador.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-9 col-md-5 col-xl-6 px-md-4 text-center" data-sal="zoom-in">
|
|
<img src="img/02.1.png" class="img-fluid floating">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
"use strict";
|
|
$('body').addClass('fake');
|
|
const audiom02 = CourseNav.createSound('audio/audiom02.mp3');
|
|
const audiom03 = CourseNav.createSound('audio/audiom03.mp3');
|
|
|
|
|
|
CourseNav.audioController.stopAllSoundsAndPlay(audiom02);
|
|
|
|
audiom02.on('play', function () {
|
|
$('.anim0').show();
|
|
});
|
|
|
|
audiom02.on('end', function () {
|
|
$('.sec_i1').show();
|
|
//CourseNav.setSlideVisited();
|
|
});
|
|
|
|
audiom03.on('end', function () {
|
|
CourseNav.setSlideVisited(true);
|
|
});
|
|
|
|
$('.btn-next-section').click(function () {
|
|
$(this).removeClass('animate__animated animate__pulse animate__infinite');
|
|
gotoSection($(this).data('sec'));
|
|
$(this).parent().hide();
|
|
|
|
const audioName = $(this).data('audio');
|
|
if (audioName) {
|
|
setTimeout(() => {
|
|
CourseNav.audioController.stopAllSoundsAndPlay(eval(audioName));
|
|
}, 500);
|
|
} else {
|
|
CourseNav.soundClick();
|
|
}
|
|
});
|
|
|
|
|
|
|
|
});
|
|
</script> |