-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect-public.html
113 lines (96 loc) · 3.18 KB
/
connect-public.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Beyond Roleplay - Connect Page</title>
<style>
body {
background-color: #101010;
color: #ffffff;
font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.25em;
}
.main-content {
display: flex;
flex-flow: row wrap;
text-align: center;
position: relative;
}
.header {
flex-basis: 100%;
display: block;
}
.header-image {
width: 33%;
}
.streamers {
color: #dc153d;
}
hr {
color: #151515;
}
.spinner {
width: 40px;
height: 40px;
position: relative;
margin: 0 auto;
}
.bounce1, .bounce2, .bounce3 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #00ff00; /* Change the color to green */
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
}
.bounce1 {
animation: bounce 2s infinite ease-in-out;
}
.bounce2 {
animation: bounce 2s infinite ease-in-out 0.33s;
}
.bounce3 {
animation: bounce 2s infinite ease-in-out 0.66s;
}
@keyframes bounce {
0%, 100% {
transform: scale(0);
}
50% {
transform: scale(1);
}
}
.animated-text {
display: inline-block;
vertical-align: middle;
margin-right: 1vh;
}
.spinner {
display: inline-block;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="main-content">
<div class="header">
<!-- <img class="header-image" src=""> -->
<h1>Beyond Roleplay</h1>
<hr>
<h1 class="animated-text">Connecting</h1>
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<h3>You may close this window once connecting.</h3>
<h3>If you are not redirected automatically, follow this <a href='fivem://connect/play.beyondroleplay.life?streamerMode=1&pure_1'>link</a></h3>
<h3 class="streamers">Please allow popups for this domain if you cannot connect.</h3>
</div>
</div>
<meta http-equiv="refresh" content="0; url=fivem://connect/play.beyondroleplay.life?streamerMode=1&pure_1">
</body>
</html>