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

30 lines
527 B
HTML

<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.fullvideo {
width: 1365px;
height: 767px;
}
</style>
</head>
<body>
<section class="fullback w-100 h-100">
<video class="fullvideo" src="video/clip_1.mp4" buffered id="vdo" ></video>
</section>
</body>
</html>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".sco").addClass('hasvideo');
vdo = document.getElementById("vdo");
vdo.play();
});
$(".fullvideo").on("ended",function(){
instruccion(1);
});
</script>