-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·904 lines (882 loc) · 43.8 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
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>喵小哥的导航</title>
<link href="images/favicon_books.ico" rel="shortcut icon">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/font-icon.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<!-- header section -->
<section class="banner" role="banner">
<!--header navigation -->
<header id="header">
<div class="header-content clearfix">
<a class="logo" href="index.html">
<img src="http://ogudt6aal.bkt.clouddn.com/image/20170912165830_yrYZsY_mylogo.jpeg">
</a>
<a class="logo_simple" href="index_full.html">
Full Version
</a>
<nav class="navigation" role="navigation">
<ul class="primary-nav">
<li><a href="about.html">About me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<a href="#" class="nav-toggle">Menu<span></span></a> </div>
</header>
<!--header navigation -->
</section>
链接到博客页
或
用时间的朋友游戏模版
<div>
<a class="tag_link" href="index.html">- Github -</a>
</div>
<!-- Text banner section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-at fa-1x"></i> MSG</p>
</section>
<!-- portfolio section -->
<a class="tag_link" href="index.html">
- Github -
</a>
<a class="tag_link" href="index.html">
- StatCounter -
</a>
<a class="tag_link" href="index.html">
- CNZZ 网络统计 -
</a>
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://github.com/taketimeasafriend" class="work-box" target="_blank"> <img src="images/github.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- GitHub -</h4>
<p><i class="fa fa-github fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://statcounter.com/p11440510/summary/?account_id=7090005&login_id=1&code=56b7e20211ed7bb740611299b54b179a&guest_login=1" class="work-box" target="_blank"> <img src="images/statcounter.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- StatCounter -</h4>
<p><i class="fa fa-database fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://web.umeng.com/main.php?c=flow&a=frame&siteid=1261612368#!/1505244139898/flow/detail/0/0/1261612368/2017-09-13/2017-09-13" class="work-box" target="_blank"> <img src="images/cnzz.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- CNZZ 网络数据 -</h4>
<p><i class="fa fa-database fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://amazingcounters.com/login.php" class="work-box" target="_blank"> <img src="images/amazingcounters.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- Amazing Counters -</h4>
<p><i class="fa fa-database fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://en.exmail.qq.com/cgi-bin/frame_html?sid=QIlcs9-pxACYX3Ys,7&r=63af16c69ad56edac95759f6adaba383" class="work-box" target="_blank"> <img src="images/exmail.qq.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 腾讯企业邮箱 -</h4>
<h5>喵小哥专属</h5>
<p><i class="fa fa-envelope fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://mail.google.com/mail/u/0/#inbox" class="work-box" target="_blank"> <img src="images/gmail.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- Gmail(需翻墙) -</h4>
<h5>直观、高效、实用的电子邮件</h5>
<p><i class="fa fa-envelope fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://dashboard.daovoice.io/app/0ff27139/users?segment=all-users" class="work-box" target="_blank"> <img src="images/DaoVoice.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- DaoVoice -</h4>
<h5>在线咨询</h5>
<p><i class="fa fa-comments fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://mail.aliyun.com/" class="work-box" target="_blank"> <img src="images/alimail.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- AliMailPersonal -</h4>
<h5>理财、安全防护</h5>
<p><i class="fa fa-fire fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-wrench fa-1x"></i> TOOLS</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-22 col-md-6 col-sm-6 work">
<!-- https://www.yuntihere.com/admin https://www.yuntipub.com/admin https://www.yuntiwork.com/ https://www.yuntihere.com/ https://www.yuntimacos.com/ -->
<a href="https://github.com/getlantern/lantern" class="work-box" target="_blank"> <img src="images/fuck.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 一把梯子 -</h4>
<h5>翻越 GFW</h5>
<p><i class="fa fa-road fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://greatfirewallofchina.org/" class="work-box" target="_blank"> <img src="images/greatfirewallofchina.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 中国长城测试(需翻墙) -</h4>
<h5>🇨🇳版图幸运的右下角</h5>
<h5>我大清朝要光复了</h5>
<p><i class="fa fa-eye fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://sendcloud.sohu.com/app/" class="work-box" target="_blank"> <img src="images/sendcloud.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- SendCloud -<h4>
<h5>触发邮件发送平台</h5>
<p><i class="fa fa-envelope fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://fontawesome.io/icons/" class="work-box" target="_blank"> <img src="images/fontawesome.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- Font Awesome(需翻墙) -</h4>
<h5>前端必备</h5>
<p><i class="fa fa-font fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://www.easyicon.net/" class="work-box" target="_blank"> <img src="images/easyicon.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- easyicon -</h4>
<h5>图标库</h5>
<p><i class="fa fa-file fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://app.yinxiang.com/Home.action#n=1cd8751a-f22c-46ec-bcb4-3d26fb7d0a9f&s=s54&ses=4&sh=2&sds=5&" class="work-box" target="_blank"> <img src="images/yinxiangbiji.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 印象笔记 -</h4>
<p><i class="fa fa-pencil fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://www.processon.com/" class="work-box" target="_blank"> <img src="images/processon.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- ProcessOn -</h4>
<h5>免费在线作图,实时协作</h5>
<p><i class="fa fa-image fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://www.sioe.cn/yingyong/yanse-rgb-16/" class="work-box" target="_blank"> <img src="images/rgb16.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- RGB 与 16进制颜色 转换 -</h4>
<p><i class="fa fa-arrows-h fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://www.uupoop.com/" class="work-box" target="_blank"> <img src="images/photoshop.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- PS online -</h4>
<p><i class="fa fa-image fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://xiuxiu.web.meitu.com/main.html" class="work-box" target="_blank"> <img src="images/meituxiuxiu.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 美图秀秀 online -</h4>
<p><i class="fa fa-image fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-pencil-square-o fa-1x"></i> LEARNING</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://fullstack.xinshengdaxue.com/dashboard" class="work-box" target="_blank"> <img src="images/fullstack.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 新生大学 · 全栈工程师(需翻墙) -</h4>
<p><i class="fa fa-pencil fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://open.163.com/" class="work-box" target="_blank"> <img src="images/open163.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 网易公开课 -</h4>
<p><i class="fa fa-star fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://www.ituring.com.cn/" class="work-box" target="_blank"> <img src="images/ituring.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 图灵社区 -</h4>
<p><i class="fa fa-book fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://www.zhihu.com/" class="work-box" target="_blank"> <img src="images/zhihu.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 知乎 -</h4>
<h5>专家与屌丝齐喑</h5>
<p><i class="fa fa-flask fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-user fa-1x"></i> ME</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://51world.win" class="work-box" target="_blank"> <img src="images/myblog.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 我的博客(评论需翻墙) -</h4>
<h5>时间的朋友</h5>
<h5>51world.win</h5>
<h5>把琐碎的时间堆砌成一个伟大的生命</h5>
<p><i class="fa fa-copyright fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://wangwei.party/" class="work-box" target="_blank"> <img src="images/resume.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- My Resume(评论需翻墙) -</h4>
<h5>待修葺</h5>
<p><i class="fa fa-copyright fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://51world.wordpress.com/" class="work-box" target="_blank"> <img src="images/wordpress.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- My Wordpress -</h4>
<h5>待修葺</h5>
<p><i class="fa fa-copyright fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://miaoxiaoge.logdown.com/" class="work-box" target="_blank"> <img src="images/logdown.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- My Logdown -</h4>
<h5>差不多遗弃了</h5>
<p><i class="fa fa-copyright fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-at fa-1x"></i> SNS</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://www.facebook.com/profile.php?id=100011242260154" class="work-box" target="_blank"> <img src="images/facebook.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- Facebook(需翻墙) -</h4>
<h5>我的主页</h5>
<p><i class="fa fa-facebook fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://twitter.com/miao_xiao_ge" class="work-box" target="_blank"> <img src="images/twitter.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- twitter(需翻墙) -</h4>
<h5>我的主页</h5>
<p><i class="fa fa-twitter fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="http://weibo.com/miaoxiaogege" class="work-box" target="_blank"> <img src="images/weibo.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 新浪微博 -</h4>
<h5>又名“渣浪”</h5>
<h5>跟百度一丘之貉</h5>
<h5>删帖放水无极限</h5>
<p><i class="fa fa-weibo fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://wx.qq.com/" class="work-box" target="_blank"> <img src="images/weixin.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 微信网页版 -</h4>
<h5>垃圾越来越多</h5>
<h5>粘性越来越大</h5>
<h5>放到这里备用</h5>
<p><i class="fa fa-weixin fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-22 col-md-6 col-sm-6 work">
<a href="https://hangouts.google.com/" class="work-box" target="_blank"> <img src="images/hangouts.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 谷歌环聊(需翻墙) -</h4>
<h5>简约时尚国际范儿</h5>
<h5>网络会议必备</h5>
<p><i class="fa fa-google fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-usd fa-1x"></i> FINANCE</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="https://taojinbi.taobao.com/index.htm?spm=a21bo.50862.201864-1.d2.bNy4mI&auto_take=true" class="work-box" target="_blank"> <img src="images/taobao.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 淘宝 -</h4>
<h5>少听点马云演讲</h5>
<h5>多给家里买点货</h5>
<h5>戳这里为了领币</h5>
<p><i class="fa fa-dollar fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://www.dangdang.com/" class="work-box" target="_blank"> <img src="images/dangdang.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 当当 -</h4>
<h5>敢做敢当当</h5>
<p><i class="fa fa-book fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://t.jd.com/home/follow" class="work-box" target="_blank"> <img src="images/jindong.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 京东 -</h4>
<h5>我的京东E卡里还有钱💰</h5>
<h5>记得千万别过了有效期...</h5>
<p><i class="fa fa-dollar fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://bj.meituan.com/" class="work-box" target="_blank"> <img src="images/meituan.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 美团 -</h4>
<h5>吃喝玩乐</h5>
<p><i class="fa fa-cutlery fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="https://blockchain.info/wallet/#/login" class="work-box" target="_blank"> <img src="images/blockchain.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 比特币钱包 -</h4>
<p><i class="fa fa-bitcoin fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="https://ico.info/projects" class="work-box" target="_blank"> <img src="images/ico.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 前沿 ICO -</h4>
<h5>可惜中国不敢让玩</h5>
<p><i class="fa fa-link fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-music fa-1x"></i> ENTERTAINMENT</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://music.163.com/#/my/m/music/playlist?id=36849551" class="work-box" target="_blank"> <img src="images/music163.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 网易云音乐 -</h4>
<h5>专注于发现与分享的音乐产品</h5>
<h5>依托专业音乐人、DJ、好友推荐及社交功能</h5>
<p><i class="fa fa-music fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://www.bilibili.com/account/history" class="work-box" target="_blank"> <img src="images/bilibili.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- bilibili -</h4>
<h5>国内知名的视频弹幕网站</h5>
<h5>看锵锵三人行就靠它了... </h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://www.youtube.com/" class="work-box" target="_blank"> <img src="images/youtube.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- YouTube(需翻墙) -</h4>
<h5>看看长城外的事儿</h5>
<h5>Winter is comming</h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://i.youku.com/i/UNjA2MjE2ODE2/subscribe?spm=a2hzp.8244740.0.0" class="work-box" target="_blank"> <img src="images/youku.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 优酷 -</h4>
<h5>看看天朝的娱乐至死... </h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://dianying.taobao.com/" class="work-box" target="_blank"> <img src="images/taopiaopiao.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 淘票票 -</h4>
<br>
<h5>周末可以看个电影感受一下人类折腾的文明... </h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://www.ttmeiju.vip/" class="work-box" target="_blank"> <img src="images/tiantianmeiju.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 天天美剧 -</h4>
<br>
<h5>追美剧最佳,比如《权游... </h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://gaoqing.la/" class="work-box" target="_blank"> <img src="images/gaoqing.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 高清电影网 -</h4>
<br>
<h5>看个高清,体验一下摄影之美</h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://www.hao6v.com/s/gf250/" class="work-box" target="_blank"> <img src="images/imdb250.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- IMDB 250 -</h4>
<br>
<h5>我有一个愿望:有生之年把经典看完... </h5>
<p><i class="fa fa-file-video-o fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-info fa-1x"></i> DAILY</p>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://map.baidu.com/" class="work-box" target="_blank"> <img src="images/baidumap.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 百度地图 -</h4>
<p><i class="fa fa-map-marker fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://ditu.amap.com/" class="work-box" target="_blank"> <img src="images/gaodemap.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 高德地图 -</h4>
<p><i class="fa fa-map-marker fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="http://map.bjsubway.com:8080/subwaymap2/public/" class="work-box" target="_blank"> <img src="images/beijingditie.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 北京地铁 -</h4>
<p><i class="fa fa-map-marker fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 work">
<a href="https://yoopu.me/home" class="work-box" target="_blank"> <img src="images/youpume.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 有谱么 -</h4>
<p><i class="fa fa-simplybuilt fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<!-- navigation button -->
<section class="nav-buttons">
<p><i class="fa fa-book fa-1x"></i> READING</p>
<h5>- 致敬那些独立思考并不吝分享的人们 -</h5>
</section>
<!-- portfolio section -->
<section id="works" class="works section no-padding">
<div class="container-fluid">
<div class="row no-gutter">
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://www.ruanyifeng.com/blog/english/" class="work-box" target="_blank"> <img src="images/ruanyifeng.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 阮一峰 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="https://web.archive.org/web/20111228120742/http://www.lixiaolai.com/archives/6300.html" class="work-box" target="_blank"> <img src="images/lixiaolai.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 李笑来 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://macshuo.com/" class="work-box" target="_blank"> <img src="images/macshuo.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 池建强 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://www.williamlong.info/" class="work-box" target="_blank"> <img src="images/williamlong.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 龙威廉 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://www.yinwang.org/" class="work-box" target="_blank"> <img src="images/yinwang.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 王垠 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 work">
<a href="http://www.maintao.com/" class="work-box" target="_blank"> <img src="images/maintao.jpg" alt="">
<div class="overlay">
<div class="overlay-caption">
<h4>- 闷道 -</h4>
<p><i class="fa fa-feed fa-2x"></i></p>
</div>
</div>
<!-- overlay -->
</a>
</div>
</div>
</section>
<!-- footer -->
<footer class="section footer">
<div class="footer-bottom">
<div class="container">
<div class="col-md-12">
<p>
<ul class="footer-share">
<li><a href="https://www.facebook.com/profile.php?id=100011242260154" target="_blank"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/miao_xiao_ge" target="_blank"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://plus.google.com/u/0/102158938196884144328" target="_blank"><i class="fa fa-google-plus"></i></a></li>
<li><a href="https://weibo.com/2044891811/profile?topnav=1&wvr=6" target="_blank"><i class="fa fa-weibo"></i></a></li>
</ul>
</p>
<p>
Wangwei
<br> © 2017 All rights reserved.
</p>
</div>
</div>
</div>
</footer>
<!-- footer -->
<!-- JS FILES -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.flexslider-min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.waypoints.min.js"></script>
<script src="js/retina.min.js"></script>
<script src="js/modernizr.js"></script>
<script src="js/main.js"></script>
<script type="text/javascript">
var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cspan id='cnzz_stat_icon_1264443179'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s19.cnzz.com/z_stat.php%3Fid%3D1264443179%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));
</script>
<!-- Start of StatCounter Code for Default Guide -->
<script type="text/javascript">
var sc_project = 11448579;
var sc_invisible = 0;
var sc_security = "28ee7477";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc" + "ript type='text/javascript' src='" +
scJsHost +
"statcounter.com/counter/counter.js'></" + "script>");
</script>
<noscript>
<div class="statcounter">
<a title="web analytics"
href="http://statcounter.com/" target="_blank"><img
class="statcounter"
src="//c.statcounter.com/11448579/0/28ee7477/0/" alt="web
analytics">
</a>
</div></noscript>
<!-- End of StatCounter Code for Default Guide -->
<a href="http://statcounter.com/p11448579/?guest=1">View My
Stats</a>
</body>
</html>