-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvideo.html
41 lines (33 loc) · 1.11 KB
/
video.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!-- video.html -->
<!-- Video scene -->
<!DOCTYPE HTML>
<head>
<!-- Type d'encodage -->
<meta charset="utf-8">
<!-- Sert à interdire le mode de compatibilité sur IE -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
<script src="Libraries/libgif.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<title>Video</title>
<style id="style">
body {
background-color: black;
margin:0;
padding:0;
height: 100%;
}
</style>
</head>
<body>
<video id="video" width="" height="" controls>
<source id="source" src="" type="">
</video>
<script type="text/javascript" src="global.js"></script>
<script type="text/javascript" src="parser_json.js"></script>
<script type="text/javascript" src="transition.js"></script>
<script type="text/javascript" src="cookie.js"></script>
<script type="text/javascript" src="init.js"></script>
<script type="text/javascript" src="video_load.js"></script>
<script type="text/javascript" src="video_scene.js"></script>
</body>
</html>