forked from hemisu/hemisu.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (116 loc) · 2.25 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>组员介绍</title>
<link rel="stylesheet" href="css/jquery.fullPage.css" type="text/css" />
<style type="text/css">
body{
background: #282737;
font-family: "Microsoft YaHei";
}
a{
color: #fff;
}
.section {
text-align: center;
color: #fff;
}
.content {
display: inline-block;
width: 600px;
}
.rowleft{
float: left;
width: 220px;
margin-right: 40px;
}
.rowleft img{
width: 160px;
border-radius: 50%;
border:2px solid #ffffff;
margin-top: 10px;
}
.rowright{
height: 180px;
width: 309px;
padding-left: 30px;
float: left;
border-left: 1px #fff solid;
}
h1{
font-size: 60px ;
}
h2{
margin-top: 20px;
margin-bottom: 20px;
font: 48px "Arial Unicode MS";
}
</style>
</head>
<body>
<div id="main" class="main">
<div class="section">
<div class="content">
<h1>队伍:</h1>
介绍
</div>
</div>
<div class="section">
<div class="content">
<div class="rowleft">
<img src="images/avatar/hemisu.jpg" ></img>
</div>
<div class="rowright">
<h2>Hemisu</h2>
来自杭州,自学中...<br />
<a href="http://www.github.com/hemisu" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="section">
<div class="content">
<div class="rowleft">
<img src="images/avatar/kongkx.png" ></img>
</div>
<div class="rowright">
<h2>Kongkx</h2>
来自佛山,毕业于华南农业大学,自学中...<br />
<a href="http://www.github.com/kongkx" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="section">
<div class="content">
<div class="rowleft">
<img src="images/avatar/Runlikewind.jpg" ></img>
</div>
<div class="rowright">
<h2>Runlikewind</h2>
来自南京,自学前端中...^_^<br />
<a href="http://www.github.com/Runlikewind" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.fullPage.min.js"></script>
<script>
$(function(){
$('#main').fullpage();
$(window).resize(function(){
autoScrolling();
});
function autoScrolling(){
var $ww = $(window).width();
if($ww < 1024){
$.fn.fullpage.setAutoScrolling(false);
} else {
$.fn.fullpage.setAutoScrolling(true);
}
}
autoScrolling();
});
</script>
</body>
</html>