-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
641 lines (440 loc) · 13.7 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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>平中之家</title>
<style type="text/css">
/* CSS Document */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.clearfix {
*zoom: 1;
}
.clearfix:after {
content: "";
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.content img {
float: center;
width: 160px;
height: 160px;
margin: 0 0 0 0;
border-radius: 80px;
}
.content:hover {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.52);
}
.content_r {
float: left;
width: auto;
height: auto;
margin: 0 0 0 100px;
/* background-color: pink;*/
}
.content_l {
float: center;
width: auto;
height: 0;
margin: 0 0 0 0;
text-align: center;
}
.content_l h5 {
font-size: 27px;
}
.cc {
margin-top: 10px;
color: #FF69B4;
font-size: 18px;
}
.color_1 {
color: #6B8E23;
font-size: 18px;
}
.deeppink {
color: orange;
}
.link {
margin-top: 30px;
}
.link a {
display: block;
float: left;
width: 160px;
height: 45px;
margin: 5px 5px 0 0;
/* padding: 0 15px;*/
color: #fff;
line-height: 45px;
transition: all 0.8s;
/* background-color: deeppink;*/
}
.link a:hover {
background-color: rgba(0, 201, 243, 0.35);
}
.deeppink_1 {
background-color: #FF69B4;
border-radius: 10px;
}
.dodgerblue {
background-color: #CD5C5C;
border-radius: 10px;
}
.magenta {
background-color: #6B8E23;
border-radius: 10px;
}
.orange {
background-color: orange;
border-radius: 10px;
}
/*body {cursor:url(白黑金三款指针/Luxus-Gold/LuxusGold-hidpi/Handwriting.cur),auto;}*/
</style>
<!--style type="text/css">
/* CSS Document */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.clearfix {
*zoom: 1;
}
.clearfix:after {
content: "";
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.content img {
float: left;
width: 200px;
height: 200px;
margin: 150px 0 0 80px;
border-radius: 100px;
}
.content:hover {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.52);
}
.content_r {
float: right;
width: 500px;
margin: 80px 60px 0 0;
/* background-color: pink;*/
}
.content_l {
float: left;
width: 100%;
text-align: center;
}
.content_l h5 {
font-size: 27px;
}
.cc {
margin-top: 10px;
color: #FF69B4;
font-size: 18px;
}
.color_1 {
color: #6B8E23;
font-size: 18px;
}
.deeppink {
color: orange;
}
.link {
margin-top: 30px;
}
.link a {
display: block;
float: left;
width: 120px;
height: 45px;
margin: 5px 5px 0 0;
/* padding: 0 15px;*/
color: #fff;
line-height: 45px;
transition: all 0.8s;
/* background-color: deeppink;*/
}
.link a:hover {
background-color: rgba(0, 201, 243, 0.35);
}
.deeppink_1 {
background-color: #FF69B4;
}
.dodgerblue {
background-color: #CD5C5C;
}
.magenta {
background-color: #6B8E23;
}
.orange {
background-color: orange;
}
</style-->
<!--script>
jQuery(document).ready(function() {
$("#page").load("h5Canvas-master/立体点缀(鼠标移动翻转).html");
});
</script-->
<iframe src="h5Canvas-master/立体点缀(鼠标移动翻转).html" frameborder="0" width="100%" height="100%" style="z-index: -10;width: 100%;position: fixed;"></iframe>
</head>
<!--script type="text/javascript" src="h5Canvas-master/立体点缀(鼠标移动翻转).js"></script-->
<!--div id="content" style="position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;"></div>
<script>
$('#content').load("h5Canvas-master/立体点缀(鼠标移动翻转).html");
</script-->
<body>
<!--iframe src="h5Canvas-master/立体点缀(鼠标移动翻转).html" frameborder="0" width="100%" height="100%" style="z-index: -1;width: 100%;position: fixed;"></iframe-->
<div class="content">
<script src="live2DModel-master/l2dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget.init({
model: {
jsonPath: 'live2DModel-master/tororo/assets/tororo.model.json',
},
display: {
superSample: 2,
width: 280,
height: 280,
position: 'right',
hOffset: -120,
vOffset: 0,
},
mobile: {
show: true,
scale: 1,
motion: true,
},
react: {
opacityDefault: 1.0,
opacityOnHover: 1.0,
}
})
</script>
</div>
<!--script src="h5Canvas-master/立体点缀(鼠标移动翻转).js"></script-->
<div class="content">
<div class="content_r clearfix">
<div class="content_l clearfix">
<br />
<img src="live2DModel-master/Einstein.jpg" alt="">
<br />
<h2 style="color: #CD5C5C;">我是平中, 欢迎来到我之主页~ 👋👋👋</h2>
<br />
<p class="cc">主要上传一些学习过程中所产生之笔记及文章~ 📝📝📝</p>
<p class="cc">爱好: 数学物理, 计算机, 历史, 环城骑行, 玩魔方, 钓鱼, 干饭, 睡觉等~ 😊😊😊</p>
<br />
<p class="color_1">A salted fish! 🐟🐟🐟</p>
<p class="color_1">咸鱼一条! 🐟🐟🐟</p>
<br />
<p class="deeppink">不怕路太远, 只怕走错路... 🏃🏃🏃</p>
<p class="deeppink">Don't be afraid of the long journey, just be afraid of taking the wrong way... 🏃🏃🏃</p>
<div class="link" text-align="center">
<a href="https://wu-kuan-yee.github.io/homepage/" class="dodgerblue" target="_self">首页</a>
<a href="article/article.html" class="deeppink_1" target="_self">思考记录短文</a>
<a href="note/note.html" class="magenta" target="_self">学习笔记</a>
<a href="book/book.html" class="orange" target="_self">书版长文</a>
<br />
</div>
</div>
</div>
</div>
<!--script type="text/javascript" src="h5Canvas-master/立体点缀(鼠标移动翻转).js"></script-->
<!--script src="/live2d/L2Dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget.init({
model: {
jsonPath: '/live2d/tororo/assets/tororo.model.json',
},
display: {
superSample: 2,
width: 150,
height: 150,
position: 'right',
hOffset: 0,
vOffset: 0,
},
mobile: {
show: true,
scale: 1,
motion: true,
},
react: {
opacityDefault: 0.8,
opacityOnHover: 0.2,
}
})
</script-->
<!--iframe src="h5Canvas-master/立体点缀(鼠标移动翻转).html" frameborder="0" width="100%" height="100%" style="z-index: -1;width: 100%;position: fixed;"></iframe-->
<!--style>@media only screen and (max-width: 800px){.catIframe{display:none;}}.catIframe {position: fixed;width: 400px;bottom: -8%;left: 8%;transform: translate(-68%, -50%);z-idnex:99999;} </style><iframe src="cat.html" frameborder="0" class="catIframe"></iframe-->
<!--script src="/live2DModel-master(1)/l2dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget.init({
model: {
jsonPath: '/live2DModel-master(1)/live2DModel-master/hijiki/assets/hijiki.model.json',
},
display: {
superSample: 2,
width: 150,
height: 150,
position: 'right',
hOffset: 0,
vOffset: 0,
},
mobile: {
show: true,
scale: 1,
motion: true,
},
react: {
opacityDefault: 0.8,
opacityOnHover: 0.2,
}
})
</script-->
<!--script src="live2DModel-master/l2dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget.init({
model: {
jsonPath: 'live2DModel-master/tororo/assets/tororo.model.json',
},
display: {
superSample: 2,
width: 150,
height: 150,
position: 'center',
hOffset: 0,
vOffset: 0,
},
mobile: {
show: true,
scale: 1,
motion: true,
},
react: {
opacityDefault: 1.0,
opacityOnHover: 1.0,
}
})
</script-->
<!--script>
window.onload = function(){ //第一个要执行的事件,会被覆盖
alert("h5Canvas-master/立体点缀(鼠标移动翻转).js");
}
if (typeof window.onload == "function") { //判断之前是否有windows.onload
var saved = null; //创建一个保存器
saved = window.onload; //把之前的window.onload那胖次吗群殴;奥
}
window.onload = function(){ //最终一个要执行的事件
saved(); //执行上一个事件
alert("live2DModel-master/l2dwidget.min.js"); //执行本事件
}
</script-->
<!--style>@media only screen and (max-width: 800px){.catIframe{display:none;}}.catIframe {position: fixed;width: 400px;bottom: 5%;left: 10%;transform: translate(-68%, -50%);z-idnex:99999;} </style-->
<!--script src="live2DModel-master/l2dwidget.min.js"></script>
<script type="text/javascript">
L2Dwidget.init({
model: {
jsonPath: 'live2DModel-master/tororo/assets/tororo.model.json',
},
display: {
superSample: 2,
width: 300,
height: 300,
position: 'right',
hOffset: -100,
vOffset: 0,
},
mobile: {
show: true,
scale: 1,
motion: true,
},
react: {
opacityDefault: 1.0,
opacityOnHover: 1.0,
}
})
</script-->
<!--div align="center"><br /><font size="6" color="white">访客数量: </font><a href="http://www.amazingcounters.com"><img border="0" src="http://cc.amazingcounters.com/counter.php?i=3249602&c=9749119" alt="AmazingCounters.com"></a></div-->
<!-- 引入不蒜子计数 -->
<!--script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<center>
<font size="4" color="white">浏览量: <span id="busuanzi_value_site_pv"><i class="fa fa-spinner fa-spin"></i></span> 👀👀👀 | 访客数: <span id="busuanzi_value_site_uv"><i class="fa fa-spinner fa-spin"></i></span> 👦👦👦</font>
</center-->
<!--script src="//cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script-->
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<!--script>
$(document).ready(function() {
var int = setInterval(fixCount, 100);
var busuanziSiteOffset = parseInt(10000);
function fixCount() {
if ($("#busuanzi_container_site_pv").css("display") != "none") {
clearInterval(int);
$("#busuanzi_value_site_pv").html(parseInt($("#busuanzi_value_site_pv").html()) + busuanziSiteOffset);
}
if ($("#busuanzi_container_site_uv").css("display") != "none") {
clearInterval(int);
$("#busuanzi_value_site_uv").html(parseInt($("#busuanzi_value_site_uv").html()) + busuanziSiteOffset);
}
}
});
</script-->
<!--link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css">
<span id="busuanzi_value_page_pv"><i class="fa fa-spinner"></i></span><span id="busuanzi_value_page_pv"><i class="fa fa-spinner fa-spin"></i></span>
<center>
<font size="4" color="cyan">浏览量: <span id="busuanzi_value_site_pv" style='display:none'><i class="fa fa-spinner fa-spin"></i></span> 👀👀👀 | 访客数: <span id="busuanzi_value_site_uv" style='display:none'><i class="fa fa-spinner fa-spin"></i></span> 👦👦👦</font>
</center-->
<!--不蒜子计数-->
<!--script async src="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css"></script-->
<!--span id= "busuanzi_container_site_pv" style='display:none'>| 总访问量 <span id= "busuanzi_value_site_pv"></span> 次 </span>
<span id= "busuanzi_container_site_uv" style='display:none'>| 总访客数 <span id= "busuanzi_value_site_uv"></span> 人 </span-->
<!--不蒜子计数-->
<!--不蒜子计数初始值纠正-->
<!--script>
$(document).ready(function() {
var int = setInterval(fixCount, 50); // 50ms周期检测函数
var countOffset = 20000; // 初始化首次数据
function fixCount() {
if (document.getElementById("busuanzi_container_site_pv").style.display != "none")
{
$("#busuanzi_value _site_pv").html(parseInt($("#busuanzi_value_site_pv").html()) + countOffset);
clearInterval(int);
}
if ($("#busuanzi_container_site_pv").css("display") !="none")
{
$("#busuanzi_value_site_uv").html(parseInt($("#busuanzi_value_site_uv").html()) + countOffset); // 加上初始数据
clearInterval(int); // 停止检测
}
}
});
</script-->
<!--script src="//cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
var int = setInterval(fixCount, 100);
var busuanziSiteOffset = parseInt(10000);
function fixCount() {
if ($("#busuanzi_container_site_pv").css("display") != "none") {
clearInterval(int);
$("#busuanzi_value_site_pv").html(parseInt($("#busuanzi_value_site_pv").html()) + busuanziSiteOffset);
}
}
});
</script>
本站总访问量<span id="busuanzi_value_site_pv"></span>次-->
</body>
</html>