28 lines
497 B
HTML
28 lines
497 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/prueba_clip.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();
|
||
|
|
});
|
||
|
|
</script>
|