-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
573 lines (358 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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0,
minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="applicable-device" content="pc,mobile"/>
<meta http-equiv="Cache-Control" content="no-transform"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<title>Lyin主页&万年历</title>
<meta name="keywords" content="农历,阳历,月历,节日,时区,节气,八字,干支,生肖
,gregorian solar,chinese lunar,calendar"/>
<link type="text/css" rel="stylesheet"
href="https://qq.ip138.com/static/style/public/responsive.css"/>
<link type="text/css" rel="stylesheet"
href="https://qq.ip138.com/static/style/day/index.css"/>
<style type="text/css">
#clock { font-family: 'Share Tech Mono', monospace;
color: #ffffff;
text-align: center;
position: absolute;
left: 135px;
top: 188px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #daf6ff;
text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
width: 275px;
height: 268px;
}
</style>
<script type="text/javascript">
<!--
if(window.top!=window.self){
window.top.location.href='/day/';
}
//-->
</script>
<style>
html, body {
height: 100%;
}
body {
background: #0f3854;
background: -webkit-radial-gradient(center ellipse, #0a2e38 0%, #000000 70%);
background: radial-gradient(ellipse at center, #0a2e38 0%, #000000 70%);
background-size: 100%;
}
p {
margin: 0;
padding: 0;
}
#clock {
font-family: 'Share Tech Mono', monospace;
color: #ffffff;
text-align: center;
position: absolute;
left: 135px;
top: 188px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #daf6ff;
text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
width: 275px;
height: 268px;
}
#clock .time {
letter-spacing: 0.05em;
font-size: 80px;
padding: 5px 0;
}
#clock .date {
letter-spacing: 0.1em;
font-size: 24px;
}
#clock .text {
letter-spacing: 0.1em;
font-size: 12px;
padding: 20px 0 0;
}
</style>
</head>
<body>
<style>
html, body {
height: 100%;
}
body {
background: #0f3854;
background: -webkit-radial-gradient(center ellipse, #0a2e38 0%, #000000 70%);
background: radial-gradient(ellipse at center, #0a2e38 0%, #000000 70%);
background-size: 100%;
}
p {
margin: 0;
padding: 0;
}
#clock {
font-family: 'Share Tech Mono', monospace;
color: #ffffff;
text-align: center;
position: absolute;
left: 354px;
top: 135px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #daf6ff;
text-shadow: 0 0 20px #0aafe6, 0 0 20px rgba(10, 175, 230, 0);
width: 1670px;
height: 250px;
}
#clock .time {
letter-spacing: 0.1em;
font-size: 25px;
}
#clock .date {
letter-spacing: 0.1em;
font-size: 50px;
}
#clock .text {
letter-spacing: 0.1em;
font-size: 12px;
padding: 20px 0 0;
}
</style>
</head>
<body>
<script type="text/javascript" src="js/vue.min.js"></script>
<div id="clock">
<p class=time>{{ date }} {{ time }}</p>
</div>
<script>
var clock = new Vue({
el: '#clock',
data: {
time: '',
date: ''
}
});
var week = ['星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'];
var timerID = setInterval(updateTime, 1000);
updateTime();
function updateTime() {
var cd = new Date();
clock.time = zeroPadding(cd.getHours(), 2) + ':' + zeroPadding(cd.getMinutes(), 2) +
':' + zeroPadding(cd.getSeconds(), 2);
clock.date = zeroPadding(cd.getFullYear(), 4) + '-' + zeroPadding(cd.getMonth()+1, 2) +
'-' + zeroPadding(cd.getDate(), 2) + ' ' + week[cd.getDay()];
};
function zeroPadding(num, digit) {
var zero = '';
for(var i = 0; i < digit; i++) {
zero += '0';
}
return (zero + num).slice(-digit);
}</script>
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="side">
<div class="mod-link">
<div class="bd">
<ul>
<li class="small"><a href="http://www.ip138.com/"
target="_blank">iP查询</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class="mod-breadcrumb only-pc">
<a
href="https://lqinyli.github.io/v/lyin.html">首页</a> <span>></span> <strong>阴阳转换万
年历</strong>
</div>
<div class="mod-panel">
<div class="hd"><h1>阴阳转换万年历</h1>
</div>
<div class="inner">
<div class="col-right">
<div class="mod-calendar">
<div class="info"></div>
<div class="box">
<div
class="selector">
<span>
<a
class="prev prev-year" href="javascript:;"><</a>
<select class="year">
<script type="text/javascript">
<!--
for(i=1900;i<2101;i++){
document.write('<option value="'+i+'">'+i+'年</option>');
}
-->
</script>
</select>
<a
class="next next-year" href="javascript:;">></a>
</span>
<span>
<a
class="prev prev-month" href="javascript:;"><</a>
<select class="month">
<script type="text/javascript">
<!--
for(i=1;i<13;i++){
document.write('<option value="'+i+'">'+i+'月</option>');
}
-->
</script>
</select>
<a
class="next next-month" href="javascript:;">></a>
</span>
<span>
<select class="holiday">
<option value="">假日安排</option>
</select>
</span>
<a
class="goback" href="javascript:;">返回今天</a>
</div>
<div
class="table"></div>
</div>
</div>
</div>
<div class="col-left">
<div class="mod-time">
<div class="bd">
<table>
<tbody>
<tr>
<td class="th">本机时间</td>
<td>
<span id="date1"> </span>
<span id="time1"> </span>
</td>
</tr>
<tr>
<td class="th">
<select id="zone">
<option value="+0000 格林威治标准时间">格林威治标准</option>
<option value="-1200 图瓦卢、埃尼威托克">国际日期变更线</option>
<option value="-1100 萨摩亚群岛、中途岛">萨摩亚</option>
<option value="-1000 夏威夷">美国夏威夷</option>
<option value="-0900*阿拉斯加">美国阿拉斯加</option>
<option value="-0800*旧金山、洛杉矶、西雅图、温哥华">北美州太平洋</option>
<option value="-0700*盐湖城、丹佛、凤凰城">美国山地</option>
<option value="-0600*萨克其万">加拿大中部</option>
<option value="-0600*墨西哥城">墨西哥</option>
<option value="-0600*芝加哥、圣路易斯、新奥尔良">美国中部</option>
<option value="-0500*波哥大、利马">南美洲太平洋</option>
<option value="-0500*纽约、华盛顿、波士顿">美国东部</option>
<option value="-0500*渥太华、多伦多、蒙特利尔">加拿大东部</option>
<option value="-0400*圣地亚哥、加拉加斯、拉巴斯">南美洲西部</option>
<option value="-0400*弗雷德里克顿、圣约翰">大西洋</option>
<option value="-0330 圣约翰斯">加拿大纽芬兰</option>
<option value="-0300 巴西利亚">东南美洲</option>
<option value="-0300 乔治城、布宜诺斯艾利斯">南美洲东部</option>
<option value="-0200*大西洋中部">大西洋中部</option>
<option value="-0100*亚速尔群岛、佛得角群岛">亚速尔</option>
<option value="+0100 伦敦、都柏林、爱丁堡">英国夏令</option>
<option value="+0000 蒙罗维亚、卡萨布兰卡(摩洛哥)">利比里亚</option>
<option value="+0100 罗马、巴黎、马德里">罗马</option>
<option value="+0100 布拉格、华沙、布达佩斯">中欧</option>
<option value="+0100 柏林、斯德哥尔摩、伯尔尼、布鲁赛尔、维也纳">西欧
</option>
<option value="+0200 以色列">以色列</option>
<option value="+0200*东欧">东欧</option>
<option value="+0200*开罗">埃及</option>
<option value="+0200*雅典、赫尔辛基、伊斯坦堡">雅典</option>
<option value="+0200*开普敦、约翰内斯堡、哈拉雷(津巴布韦)">南非</option>
<option value="+0300*巴格达、科威特、内罗毕(肯尼亚)、利雅得(沙特)">沙特阿拉
伯</option>
<option value="+0300 莫斯科、圣彼得堡">俄罗斯</option>
<option value="+0330*德黑兰">伊朗</option>
<option value="+0400*阿布扎比、第比利斯(格鲁吉亚)">阿联酋</option>
<option value="+0430*喀布尔">阿富汗</option>
<option value="+0500 伊斯兰堡、卡拉奇">西亚</option>
<option value="+0530 孟买、新德里、加尔各答、科伦坡(斯里兰卡)">印度
</option>
<option value="+0600 达卡、叶卡捷琳堡(俄罗斯)">中亚</option>
<option value="+0630 仰光">缅甸</option>
<option value="+0700 曼谷、河内、雅加达、胡志明市">曼谷</option>
<option value="+0800 北京、上海、重庆、广州">中国大陆</option>
<option value="+0800 台北、香港、新加坡、吉隆坡、马尼拉">台北</option>
<option value="+0800 珀斯">澳大利亚西部</option>
<option value="+0900 东京、大阪、札幌、首尔">东京</option>
<option value="+0930 达尔文">澳大利亚中/南部</option>
<option value="+1000 悉尼、墨尔本、堪培拉、布里斯本">澳大利亚东部</option>
<option value="+1000 关岛、莫斯比港、符拉迪沃斯托克(海参崴)">西太平洋
</option>
<option value="+1100*所罗门群岛、新喀里多尼亚">太平洋中部</option>
<option value="+1200 惠灵顿、奥克兰、基督城">新西兰</option>
<option value="+1200 斐济、马歇尔群岛">斐济</option>
</select>
</td>
<td>
<span id="date2"> </span>
<span id="time2"> </span>
</td>
</tr>
</tbody>
</table>
<div class="map">
<img
src="https://qq.ip138.com/static/image/day/map.png" width="320">
<span
id="left" class="s1"></span>
<span
id="top" class="s2"></span>
</div>
<p
id="place"> </p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function() {
var s = "_" + Math.random().toString(36).slice(2);
document.write('<div style="" id="' + s + '"></div>');
(window.slotbydup = window.slotbydup || []).push({
id: "u5691515",
container: s
});
})();
</script>
</div>
<div class="footer">
<div class="mod-foot">
<div class="info">
<p><span>如果您觉得本站对您的朋友有
帮助,别忘了告诉他(她)们哟 ^_^</span></p>
<p>
<span class="contact">联系
我们:请<a href="e-mail://[email protected]" rel="nofollow" target="_blank">发email</a>或给我们留言,谢谢!<a
href="https://lqinyli.github.io/v/lyin.html" rel="nofollow" target="_blank">主页</a<></span>
</p>
</div>
</div>
<div class="mod-goback">
<a href="#" rel="nofollow">返回顶部</a>
</div>
<div class="mod-mask"></div>
</div>
</div>
</div>
<script type="text/javascript"
src="https://qq.ip138.com/static/script/public/common.js"></script>
<script type="text/javascript"
src="https://qq.ip138.com/static/script/day/index.js"></script>
</body>
</html>