-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
36 lines (34 loc) · 1.3 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="img/favicon.png" type="image/png">
<title>Vidéos</title>
<div w3-include-html="css.html"></div>
<link rel="stylesheet" href="https://cdn.plyr.io/3.5.10/plyr.css"/>
<!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
</head>
<body>
<div w3-include-html="menu.html"></div>
<div w3-include-html="small-banner.html"></div>
<section class="find_view_area p_120">
<div class="container">
<h2>La loi du ramen : TOP 5 anime (non censurée)</h2>
<video poster="img/thumbvideo4.png" id="player" playsinline controls>
<source src="http://78.213.105.182/video4.mp4" type="video/mp4"/>
<source src="http://78.213.105.182/video4.webm" type="video/webm"/>
</video>
</div>
</section>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/autoloader.js"></script>
<script src="https://cdn.plyr.io/3.5.10/plyr.js"></script>
<script>
const player = new Plyr('#player', {
controls: ['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'pip', 'airplay', 'fullscreen']
});
</script>
</body>
</html>