-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
365 lines (360 loc) · 13 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Displyy</title>
<meta property="og:title" content="Displyy Mod Menu">
<meta property="og:description" content="The best Gorilla Tag mod menu. Enhance your gameplay with amazing features!">
<meta property="og:image" content="https://displyy.com/logo_small.png">
<meta property="og:url" content="https://displyy.com">
<meta name="twitter:card" content="summary_large_image">
<link rel="icon" href="https://displyy.com/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script src="https://cdn.sellix.io/static/js/embed.js"></script>
<link href="https://cdn.sellix.io/static/css/embed.css" rel="stylesheet"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
overflow-x: hidden;
display: flex;
flex-direction: column;
align-items: center;
}
header {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 50px;
background-color: rgba(30, 30, 30, 0.8);
border-bottom: 1px solid #333;
backdrop-filter: blur(10px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
position: relative;
}
.title, .discord-link-container {
flex: 1;
text-align: center;
}
.title {
font-size: 2.5em;
}
.logo-container {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.logo {
height: 80px;
border-radius: 50%;
}
.discord-link {
background-color: rgba(114, 137, 218, 0.8);
color: white;
border: none;
padding: 10px 20px;
font-size: 1em;
border-radius: 10px;
cursor: pointer;
text-decoration: none;
transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
backdrop-filter: blur(5px);
width: 150px;
display: inline-block;
text-align: center;
}
.discord-link:hover {
background-color: rgba(91, 110, 174, 0.8);
}
.main-content {
text-align: center;
padding: 50px 20px;
width: 80%;
position: relative;
margin-top: 50px;
}
.product-name {
font-size: 2.5em;
margin-bottom: 20px;
}
.description {
font-size: 1.2em;
margin-bottom: 20px;
}
.pricing {
font-size: 1.5em;
margin-bottom: 30px;
}
.buy-button {
background-color: rgba(114, 137, 218, 0.8);
color: white;
border: none;
padding: 15px 30px;
font-size: 1.2em;
border-radius: 15px;
cursor: pointer;
transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
backdrop-filter: blur(15px);
margin-bottom: 80px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(255, 255, 255, 0.4) inset;
}
.buy-button:hover {
background-color: rgba(91, 110, 174, 0.8);
transform: translateY(-2px);
}
.product-image {
display: block;
margin: 0 auto;
width: 60%;
height: auto;
border-radius: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 0 15px rgba(17, 17, 17, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
backdrop-filter: blur(10px);
background: rgba(126, 123, 123, 0.1);
border: 1px solid rgba(74, 74, 77, 0.192);
}
.product-image:hover {
transform: translateY(-20px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4), 0 0 25px rgba(34, 34, 34, 0.8);
}
.features {
width: 80%;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 50px 20px;
background-color: rgba(30, 30, 30, 0.8);
border-radius: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
margin-top: 50px;
margin-bottom: 50px;
}
.features h2 {
width: 100%;
font-size: 2em;
text-align: center;
margin-bottom: 30px;
}
.feature {
background-color: rgba(39, 39, 39, 0.8);
width: 45%;
padding: 20px;
margin: 10px;
border: 1px solid #333;
border-radius: 20px;
transition: transform 0.3s ease, background-color 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
}
.feature:hover {
transform: translateY(-10px);
background-color: rgba(51, 51, 51, 0.8);
}
.feature h3 {
margin-top: 0;
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
padding-top: 60px;
}
.modal-content {
background-color: #2c2c2c;
margin: 5% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 600px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover, .close:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.gateway {
margin-bottom: 20px;
cursor: pointer;
}
.gateway h3 {
margin: 0 0 10px 0;
display: inline-block;
}
.gateway i {
margin-right: 10px;
vertical-align: middle;
}
.payment-methods {
display: none;
list-style: none;
padding: 0;
}
.payment-methods li {
background-color: rgba(39, 39, 39, 0.8);
padding: 10px;
margin: 5px 0;
border-radius: 5px;
transition: background-color 0.3s ease;
display: flex;
align-items: center;
}
.payment-methods li i {
margin-right: 10px;
}
.payment-methods li:hover {
background-color: rgba(51, 51, 51, 0.8);
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
header {
flex-direction: column;
align-items: center;
padding: 20px;
}
.title {
font-size: 2em;
}
.logo-container {
position: static;
transform: none;
margin-bottom: 20px;
}
.discord-link-container {
width: 100%;
display: flex;
justify-content: center;
margin-top: 10px;
}
.main-content {
width: 90%;
padding: 20px;
margin-top: 20px;
}
.features {
width: 90%;
padding: 20px;
flex-direction: column;
align-items: center;
}
.feature {
width: 90%;
margin: 10px 0;
}
.modal-content {
width: 90%;
}
}
</style>
</head>
<body>
<header>
<div class="title">Displyy</div>
<div class="logo-container">
<img src="logo.png" alt="Displyy Logo" class="logo">
</div>
<div class="discord-link-container">
<a href="https://displyy.com/discord" target="_blank" class="discord-link">Join Our Discord</a>
</div>
</header>
<div class="main-content">
<div class="product-name">Displyy Mod Menu</div>
<div class="description">The best Gorilla Tag mod menu. Enhance your gameplay with amazing features!</div>
<div class="pricing">Lifetime access for $20.</div>
<button class="buy-button" onclick="document.getElementById('paymentModal').style.display='block'">Buy Now</button>
<img src="product-image.png" alt="Displyy Product Image" class="product-image">
</div>
<div class="features">
<h2>Features</h2>
<div class="feature">
<h3>Frequent Updates</h3>
<p>Our mod menu is regularly updated to ensure compatibility with the latest game versions and to introduce new features and improvements.</p>
</div>
<div class="feature">
<h3>Tested for Stability</h3>
<p>All features are thoroughly tested to ensure a smooth and stable experience, minimizing crashes and bugs during gameplay.</p>
</div>
<div class="feature">
<h3>Enhanced Gameplay</h3>
<p>Unlock new abilities and hacks that provide an edge in gameplay, making your Gorilla Tag experience more exciting and dynamic.</p>
</div>
<div class="feature">
<h3>High Security</h3>
<p>Our mod menu includes advanced security measures to protect your account and ensure safe usage without risking bans or penalties.</p>
</div>
</div>
<div id="paymentModal" class="modal">
<div class="modal-content">
<span class="close" onclick="document.getElementById('paymentModal').style.display='none'">×</span>
<h2>Choose a payment gateway</h2>
<div class="gateway" onclick="togglePaymentMethods('sellix')">
<h3 style="display: flex; align-items: center;"><img src="sellix_logo.svg" alt="Sellix Logo" style="width: 50px; height: 50px; margin-right: 10px;" data-sellix-product="639f324bac6fc"
type="submit"
alt="Buy Now with sellix.io"> Sellix</h3>
<ul class="payment-methods" id="sellix" data-sellix-product="639f324bac6fc"
type="submit"
alt="Buy Now with sellix.io">
<li><i class="fab fa-paypal"></i>PayPal</li>
<li><i class="fas fa-credit-card"></i>Credit/Debit Card</li>
<li><i class="fab fa-bitcoin"></i>Cryptocurrency</li>
</ul>
</div>
<div class="gateway" onclick="togglePaymentMethods('spezz')">
<h3 style="display: flex; align-items: center;"><img src="spezz_logo.svg" alt="Spezz Logo" style="width: 50px; height: 50px; margin-right: 10px;"> Spezz Exchange</h3>
<ul class="payment-methods" id="spezz">
<li><i class="fab fa-cc-apple-pay"></i>Apple Pay</li>
<li><i class="fab fa-google-pay"></i>Google Pay</li>
<li><i class="fas fa-credit-card"></i>Credit/Debit Card</li>
<li><i class="fas fa-university"></i>Bank Transfer</li>
<li><i class="bi bi-cash-coin"></i>Cash App</li>
<li><i class="bi bi-currency-bitcoin"></i>Cryptocurrency</li>
<li><i class="bi bi-three-dots"></i>Many more...</li>
</ul>
</div>
</div>
</div>
<script>
function togglePaymentMethods(id) {
var paymentMethods = document.getElementsByClassName('payment-methods');
for (var i = 0; i < paymentMethods.length; i++) {
paymentMethods[i].style.display = 'none';
}
document.getElementById(id).style.display = 'block';
}
window.onclick = function(event) {
var modal = document.getElementById('paymentModal');
if (event.target == modal) {
modal.style.display = "none";
}
}
document.getElementById('spezz').addEventListener('click', function(event) {
if (event.target.tagName === 'LI') {
window.open('https://spezz.exchange/store/product/165-displyy-mod-menu/', '_blank');
}
});
</script>
</body>
</html>