This repository has been archived by the owner on Jan 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
377 lines (335 loc) · 13.1 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
366
367
368
369
370
371
372
373
374
375
376
377
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>丁真租号玩🚬</title>
<script>
var canvasSettings = {
color: "236,240,241"
};
var config = {
element: "#captcha",
textBefore: "I'm not a robot",
textDuring: "Verifying...",
textAfter: "You're a robot",
duration: 2000,
success: false,
dark: false
};
</script>
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
transition: background-color 0.5s, color 0.5s;
}
.dark-mode {
background-color: #2c3e50;
color: #ecf0f1;
}
.header {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 40px;
position: relative;
z-index: 1;
}
.avatar {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid #3498db;
margin-right: 20px;
overflow: hidden;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
h1, h2 {
color: #2c3e50;
}
.dark-mode h1, .dark-mode h2 {
color: #ecf0f1;
}
h1 {
font-size: 2.5em;
}
h2 {
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
margin-top: 30px;
}
.section {
background-color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: background-color 0.5s, box-shadow 0.5s;
position: relative;
z-index: 1;
}
.dark-mode .section {
background-color: #34495e;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.footnote {
font-size: 0.8em;
color: #7f8c8d;
position: relative;
z-index: 1;
}
.dark-mode .footnote {
color: #bdc3c7;
}
a {
color: #3498db;
text-decoration: none;
transition: color 0.5s;
}
a:hover {
text-decoration: underline;
}
.dark-mode a {
color: #1abc9c;
}
#theme-toggle {
position: fixed;
top: 20px;
left: 20px;
background-color: #3498db;
color: white;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background-color 0.5s, transform 0.3s;
z-index: 1;
}
#theme-toggle:hover {
transform: scale(1.1);
background-color: #2980b9;
}
#play-pause-button {
position: fixed;
top: 70px;
left: 20px;
background-color: #3498db;
color: white;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background-color 0.5s, transform 0.3s;
z-index: 1;
}
#play-pause-button:hover {
transform: scale(1.1);
background-color: #2980b9;
}
.distributor-container {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin-top: 20px;
}
.distributor-container a {
display: inline-block;
background-color: white;
border: 2px solid #3498db;
border-radius: 10px;
padding: 10px;
margin: 10px;
width: calc(20% - 20px);
text-align: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
color: #2c3e50;
}
.dark-mode .distributor-container a {
background-color: #34495e;
border-color: #1abc9c;
color: #ecf0f1;
}
.distributor-container a:hover {
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
color: #2980b9;
}
.dark-mode .distributor-container a:hover {
color: #1abc9c;
}
.btn-link {
display: inline-block;
padding: 8px 16px;
font-size: 1em;
font-weight: bold;
color: #fff;
background: linear-gradient(45deg, #3498db, #1abc9c);
border-radius: 30px;
text-decoration: none;
transition: background 0.3s, box-shadow 0.3s;
margin-right: 10px;
}
.btn-link:hover {
background: linear-gradient(45deg, #2980b9, #16a085);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<audio id="background-audio" src="dingzhen.mp3" loop></audio>
<button id="theme-toggle"></button>
<button id="play-pause-button">▶️</button>
<div class="header">
<div class="avatar">
<img src="dingzhen.jpg" alt="丁真">
</div>
<h1>丁真租号玩</h1>
</div>
<div class="section">
<h2>我们的优势</h2>
<p><strong>省心省力:</strong>Relx能帮你轻松完成各种任务,让生活更加<strong>轻松自在</strong>。</p>
<p><strong>价格低廉:</strong>我们的价格非常低廉,相较于官网<strong>便宜了80%以上</strong>。*</p>
<p><strong>多种功能:</strong>我们支持使用<strong>多种Relx</strong>,而您只需要支付一次费用。*</p>
<p><strong>售后支持:</strong>我们拥有<strong>友好的售后支持</strong>,若您在使用过程中遇到问题,请及时联系售后。*</p>
<a class="btn-link" href="https://discord.lunarclient.top">Discord服务器</a>
<a class="btn-link" href="https://t.me/earthsworth">Telegram群组</a>
<a class="btn-link" href="/docs/index.html#/dz/buy">加入我们</a>
<p>打个广告 第三方LunarClient启动器 -> <a href="https://lunarclient.top">lunarclient.top</a></p>
<p>左上角按钮可以切换主题以及听丁真の小曲,网页暂时只适配了PC端</p>
</div>
<div class="section">
<h2>分销商</h2>
<div class="distributor-container">
<a href="https://t.me/cubewhy">Pay with crypto (USDT...)</a>
<a href="https://shop.hln.asia">HLN-Boost(两天卡/周卡/月卡)</a>
<a href="http://slimehack.shop">Slimehack(天卡)</a>
</div>
<p>除此处列出的,其它购买地址都<strong>未经授权</strong>,请谨慎甄别。</p>
<link rel="stylesheet" href="fakeCAPTCHA.css">
<script src="fakeCAPTCHA.js"></script>
<div id="captcha"></div>
<script>
captcha = new CAPTCHA(config);
</script>
</div>
<div class="section">
<h2>相关链接</h2>
<div class="distributor-container">
<a href="https://vape.lunarclient.top/redeem">注册/续期/兑换</a>
<a href="https://vape.lunarclient.top/colddown">注入冷却</a>
<a href="https://dl.getvape.today">瑞克发射器/启动器(123pan)</a>
<a href="https://t.me/qbychannel/53">瑞克发射器/启动器(Telegram)</a>
<p>如果遇到问题或者对我们有意见可以在GitHub/Discord/Telegram提出, 在QQ说是没用的, 除非有人告诉我</p>
</div>
</div>
<div class="section footnote">
<p>* CNY/USD汇率作7.165计算,官网售价为9.99USD/月,租号玩官方定价为15CNY/月,最终结果约为80%。</p>
<p>* 租号玩支持使用v4/lite, v3/v2等暂不支持。</p>
<p>* 退款政策由分销商制定, 开发者无法处理退款请求。</p>
<p>* 我们没有任何QQ联系方式, 分销商群组并不是官方群组。</p>
<p>* 由于账号成本,租号玩官方服务需要收费;核心源代码在GitHub开源(<a href="https://github.com/CubeWhyMC/DingZhenServlet">点击这里</a>),若您不想使用官方服务,请自行搭建。</p>
<p>Made by <a href="https://github.com/CubeWhyMC">CubeWhy</a> & HXY group members | Page designed by <a href="https://space.bilibili.com/1674232182">天沐TNT</a></p>
</div>
<script>
const toggleButton = document.getElementById('theme-toggle');
const playPauseButton = document.getElementById('play-pause-button');
const body = document.body;
const audio = document.getElementById('background-audio');
body.classList.add('dark-mode');
function updateColor() {
if (body.classList.contains('dark-mode')) {
toggleButton.textContent = '☀️';
canvasSettings.color = "236,240,241";
} else {
toggleButton.textContent = '🌙';
canvasSettings.color = "44,62,80";
}
}
toggleButton.addEventListener('click', () => {
body.classList.toggle('dark-mode');
updateColor();
});
updateColor();
playPauseButton.addEventListener('click', () => {
if (audio.paused) {
audio.play();
playPauseButton.textContent = '⏸';
} else {
audio.pause();
playPauseButton.textContent = '▶️';
}
});
</script>
<script>
!function(){
function n(n,e,t){
return n.getAttribute(e)||t
}
function e(n){
return document.getElementsByTagName(n)
}
function t(){
var t=e("script"),o=t.length,i=t[o-1];
return{
l:o,z:n(i,"zIndex",-1),o:n(i,"opacity",.5),c:canvasSettings.color,n:n(i,"count",100)
}
}
function o(){
a=m.width=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,
c=m.height=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight
}
function i(){
r.clearRect(0,0,a,c);
var n,e,t,o,m,l;
s.forEach(function(i,x){
for(i.x+=i.xa,i.y+=i.ya,i.xa*=i.x>a||i.x<0?-1:1,i.ya*=i.y>c||i.y<0?-1:1,r.fillRect(i.x-.5,i.y-.5,1,1),e=x+1;e<u.length;e++)n=u[e],
null!==n.x&&null!==n.y&&(o=i.x-n.x,m=i.y-n.y,
l=o*o+m*m,l<n.max&&(n===y&&l>=n.max/2&&(i.x-=.03*o,i.y-=.03*m),
t=(n.max-l)/n.max,r.beginPath(),r.lineWidth=t/2,r.strokeStyle="rgba("+canvasSettings.color+","+(t+.6)+")",
r.moveTo(i.x,i.y),r.lineTo(n.x,n.y),r.stroke()))
}),
x(i)
}
var a,c,u,m=document.createElement("canvas"),
d=t(),l="c_n"+d.l,r=m.getContext("2d"),
x=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||
function(n){
window.setTimeout(n,1e3/45)
},
w=Math.random,y={x:null,y:null,max:2e4};m.id=l,m.style.cssText="position:fixed;top:0;left:0;opacity:"+d.o+";pointer-events:none;";
e("body")[0].appendChild(m),o(),window.onresize=o,
window.onmousemove=function(n){
n=n||window.event,y.x=n.clientX,y.y=n.clientY
},
window.onmouseout=function(){
y.x=null,y.y=null
};
for(var s=[],f=0;d.n>f;f++){
var h=w()*a,g=w()*c,v=2*w()-1,p=2*w()-1;s.push({x:h,y:g,xa:v,ya:p,max:6e3})
}
u=s.concat([y]),
setTimeout(function(){i()},100)
}();
</script>
</body>
</html>