-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlogout.html
49 lines (47 loc) · 915 Bytes
/
logout.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
42
43
44
45
46
47
48
49
<html>
<style>
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
position: fixed;
right: 0;
bottom: 0;
object-fit: fill;
width: 100%;
height: 100%;
}
/* Add some content at the bottom of the video/page */
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}
body {
background-color: black;
}
/* Style the button used to pause/play the video */
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
</style>
<head>
</head>
<body onload="playVid()">
<video autoplay muted loop id="myVideo">
<source src="SCPTECH.mp4" type="video/mp4">
</video>
<iframe width="0" height="0" src="https://www.youtube.com/embed/Ux37TW5AaIc?autoplay=1"></iframe>
</body>
</html>