-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (69 loc) · 1.79 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Trailer Web Roblox</title>
</head>
<style>
*,
html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#trailer {
position: fixed;
bottom: 0;
right: 0;
min-width: 100%;
min-height: 100%;
}
.intro {
position: fixed;
bottom: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
color: white;
padding: 20px;
font-size: 20px;
font-family: fantasy;
}
#btn {
margin-top: 20px;
border: none;
padding: 12px;
color: white;
background-color: black;
font-weight: 800;
width: 200px;
cursor: pointer;
}
</style>
<body>
<video autoplay muted loop src="/game_trailer.mp4" id="trailer"></video>
<div class="intro">
<center>
<img src="/roblox-logo.png" alt="rblxlogo" width="150" height="150">
<p>Roblox is the ultimate virtual universe that lets you create, share experiences with friends, and be
anything you can imagine.</p>
<button id="btn" onclick="triggerBtn()">PAUSE</button>
</center>
</div>
<script>
const trailer = document.getElementById("trailer")
const btn = document.getElementById("btn")
function triggerBtn() {
if(trailer.paused) {
trailer.play()
btn.innerHTML = "PAUSE"
}else{
trailer.pause()
btn.innerHTML = "PLAY"
}
}
</script>
</body>
</html>