This commit is contained in:
2026-06-04 12:20:40 -06:00
commit 4858993c86
316 changed files with 16880 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<!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>