This repository has been archived by the owner on Mar 2, 2022. It is now read-only.
forked from imuncle/gitblog
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
77 lines (76 loc) · 2.9 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
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"/>
<meta name="format-detection" content="telephone=no"/>
<link rel="stylesheet" href="css/common.css">
<link rel="icon" href="images/avatar.jpg">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/home.css">
</head>
<body>
<label class="navi-button">MENU</label>
<input type="text" class="search-input" placeholder="回车搜索">
<img src="images/search.svg" class="search">
<ul class="main-navication">
<ul id="menu"></ul>
<hr>
<ul id="friends"></ul>
</ul>
<div class="main">
<div class="page_header" ></div>
<div class="author">
<div class="head">
<img src="images/avatar.jpg" class="img-responsive img-circle">
</div>
<h3 class="name" id="title"></h3>
<p class="name" id="instruction"></p>
<p class="name">I am <text id="changerificwordspanid"></text> today!</p>
</div>
<div class="container">
<div class="col-lg-8 col-lg-offset-1 col-md-8 col-md-offset-1">
<ul id="issue-list" class="main_content" style="padding-left: 0px; opacity: 1; transform: translateY(0px);">
<br>
<h4 class="title">内容加载中...</h4>
</br>
</ul>
</div>
<div class="col-lg-3 col-lg-offset-0 col-md-3 col-md-offset-0 visible-lg visible-md" style="margin: 72px auto 0 auto;">
<a style="line-height:1.1;font-weight:700;cursor:pointer;color:#808080;text-decoration: none">FEATURED TAGS</a>
<div class="tags" style="margin-top:10px" id="tags"></div>
<hr>
</div>
</div>
<div style="text-align: center">
<ul class="pagination" id="pages" style="display: none"></ul>
</div>
<div class="footer" style="text-align: center">
<div id='icon' style="display: flex;justify-content: center;padding: 0;align-items: center"></div>
<div id="footer" style="text-align: center;background: #2c3e50;padding-top: 30px;color: white"></div>
</div>
</div>
</body>
<script src = "js/jquery.min.js"></script>
<script src = "js/typed.js"></script>
<script src = "js/gitblog.js"></script>
<script>
$(function(){
$('.head').css("opacity","1");
$('.head').css("transform","translateY(0)");
$('.name').css("opacity","1");
$('.name').css("transform","translateY(0)");
$('.main_content').css("opacity","1");
$('.main_content').css("transform","translateY(0)");
$("#changerificwordspanid").typed({
strings: ["good", "happy", "healthy", "tall"],
typeSpeed: 100,
startDelay: 10,
showCursor: true,
shuffle: true,
loop:true
});
});
</script>
</html>