-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvideo-poster.html
33 lines (30 loc) · 1.11 KB
/
video-poster.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Bootstrap Demo</title>
<link href="css/bootstrap.css" rel="stylesheet" />
<script src="js/jquery.js" defer></script>
<script src="js/bootstrap.js" defer></script>
<script src="js/test.js" defer></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">LCP Test</a>
</div>
</nav>
<div class="container mt-5">
<h1 class="display-4">Video with poster</h1>
<p class="lead">The test is at <span id="progress">..</span></p>
<hr class="my-4" />
<video width="960" height="640" poster="img/lcp-1296.webp" class="img-fluid my-4" controls loop muted autoplay>
<source src="img/lcp.mp4" type="video/mp4" />
</video>
</div>
<footer class="footer fixed-bottom bg-primary text-white">
<div class="container py-2">LCP timing: <span id="lcptiming">n.a.</span></div>
</footer>
</body>
</html>