-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (114 loc) · 4.09 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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.css">
<title>Yan Feng's Blog</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Yan Feng, Yan Feng's Blog" />
<meta name="description" content="God feeds every bird, but doesn't put it right in its nest." />
<!--加载textillate文字特效库-->
<link rel="stylesheet" href="assets/animate.css">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="assets/jquery.lettering.js"></script>
<script src="jquery.textillate.js"></script>
<script type="text/javascript">
$(function() {
$('.text1').textillate({ in: { effect: 'flipInX' } });
$('.text3').textillate({
initialDelay: 9000,
in: { effect: 'bounceInDown' }
});
})
</script>
<script>
(function() {
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if(curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
} else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
<!--添加百度统计-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?a0de0062ecc8e145d335478668581635";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/skel.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-wide.css" />
<link rel="stylesheet" href="css/style-noscript.css" />
</noscript>
<!--[if lte IE 9]><link rel="stylesheet" href="css/ie/v9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
</head>
<style>
.blog_txt{
font-size: 22px;
color: #000000;
font-weight: bold;
}
</style>
<body class="loading">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Header -->
<header id="header" style="height:70vh;">
<div align="center">
<img src="css/images/portrait.jpg" style="width:100px; height:100px; border-radius:50%; overflow:hidden;" />
</div>
<!--<h2>一月筠</h2>-->
<font class="text1" style="text-align: center; text-decoration: none; color: white; font: '微软雅黑'; font-size: 24px;">Yan Feng</font>
<p class="text3" align="center">God feeds every bird, but doesn't put it right in its nest.</p>
<nav>
<ul>
<li>
<div>
<span class="blog_txt">BLOG</span>
<a href="https://fengyan72.github.io/blog/" class="fa fa-pencil-square-o" style="color:mediumspringgreen"><span>Blog</span></a>
</div>
</li>
<li>
<span class="blog_txt">CV</span>
<a href="https://fengyan72.github.io/blog/about/" class="fa fa-id-card-o"><span>CV</span></a>
</li>
<li>
<span class="blog_txt">Project</span>
<a href="https://fengyan72.github.io/blog/categories/projects/" class="fa fa-bar-chart"><span>Project</span></a>
</li>
<li>
<span class="blog_txt">GitHub</span>
<a href="https://github.com/fengyan72" class="fa fa-github"><span>Github</span></a>
</li>
<li>
<span class="blog_txt">BOOK</span>
<a href="https://fengyan72.github.io/blog/categories/book/" class="fa fa-book"><span>Book</span></a>
</li>
</ul>
</nav>
</header>
<footer id="footer">
<div style="text-align:center;">
Powered by Yan Feng
</div>
</footer>
</div>
</div>
</body>
</html>