-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (98 loc) · 4.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CloudRed | Blog</title>
<link href="static/images/icon.png" rel="shortcut icon"/>
<!-- <link href="static/css/base.lib.min.css" rel="stylesheet" media="screen"> -->
<!-- <link href="static/css/layout.min.css" rel="stylesheet" media="screen"> -->
<!-- <link id="prettify-style" href="static/css/desert-cmd.css" type="text/css" rel="stylesheet"> -->
<!-- <link id="prettify-style" href="static/css/prettify-cmd.css" type="text/css" rel="stylesheet"> -->
<link href="static/css/base.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="static/plugs/mCustomScrollbar/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="newindex.css" />
<link rel="stylesheet" href="color.css" />
</head>
<body onresize="sizechange()">
<!-- nav begin -->
<!-- <div class=""> -->
<div class="s-window">
<!-- <input type="radio" name="radio-set" id="st-control-1" /> -->
<!-- <input type="radio" name="radio-set" id="st-control-2" /> -->
<!-- nav end -->
<!-- content begin -->
<div class="s-scroll">
<section class="s-panel main" id="s-panel-1">
<!-- FOOTER -->
<div class="main-footer">
<a href="#">© CloudRed</a>
</div>
<!-- content -->
<div class="m-scroll">
<!-- <div class="bg"></div> -->
<div class="main-barrie">
<div class="main-wrap">
<div class="wrap-top">
<a href="https://cloudred.github.io">
<img src='static/images/icon-source.png'/ width="140" height="140">
</a>
<h1>HELLO! I AM CLOUDRED</h1>
</div>
<div class="wrap-bottom">
<i class="split"></i>
<ul>
<li><a id="ac" href="javascript:;"><i class="icon-file-text" title="My essay"></i></a></li>
<li><a href="mailto:[email protected]"><i class="icon-envelope-alt" title="Contact Me"></i></a></li>
<li><a href="https://github.com/CloudRed"><i class="icon-github" title="My Github"></i></a></li>
<li><a id="me" href="javascript:;"><i class="icon-user" title="About Me"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="s-panel st-color" id="s-panel-2">
<a class="back-main" href="javascript:;">BACK</a>
<p>This is my smooth transition test page 2 !</p>
<div id="wrap">
<div class="">
<h2><a href="javascript:;" onclick="showPage('{{path}}');return false;">{{title}}</a> {{date}}</h2>
<!-- Disqus 获取评论数 -->
<!-- <p><span class='disqus-comment-count' data-disqus-url="https://cloudred.github.io{{path}}#disqus_thread">0 Comments</span></p> -->
</div>
</div>
</section>
<section class="s-panel st-color" id="s-panel-right">
<a class="back-main" href="javascript:;">BACK</a>
<p>This is my smooth transition test page right !</p>
</section>
</div>
</div>
<!-- </div> -->
<script type="text/javascript" src="static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="static/js/GeneralTools.js"></script>
<script type="text/javascript" src="pages/data.js"></script>
<script type="text/javascript" src="static/js/Generator.js"></script>
<script src="static/plugs/mCustomScrollbar/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="static/plugs/mCustomScrollbar/jquery.mousewheel.min.js"></script>
<script>
// Seting Scrollbar object
(function($){
$(window).load(function(){
$(".main").mCustomScrollbar({
// axis : 'xy',
theme : 'minimal',
// theme : 'dark',
autoHideScrollbar : true,
scrollInertia: 0,
});
});
})(jQuery);
$(".m-scroll").css({'height':$('body').height()})
function sizechange(){
$(".m-scroll").css({'height':$('body').height()})
}
</script>
</body>
</html>