-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (108 loc) · 4.04 KB
/
index.html
File metadata and controls
117 lines (108 loc) · 4.04 KB
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
<!-- 启动页 -->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="renderer" content="webkit" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge, chrome=1" />
<title>青春在线 - 山东理工大学第一门户网站</title>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/swiper.min.css" />
<link rel="stylesheet" href="./css/main.css" />
<script src="./js/jquery-3.0.0.min.js"></script>
</head>
<body class="index-body">
<div class="container-fluid index-content">
<!-- 标题 -->
<section class="index-section-topic">
<div>Youthol</div>
<div>青春在线 - 山东理工大学第一门户网站</div>
</section>
<!-- 进入网站按钮 -->
<section class="index-section-btn">
<a href="./home.html">
<button>进入网站</button>
</a>
</section>
<!-- 卡片 -->
<section class="index-section-card" role="tabpanel">
<nav class="nav" role="tablist">
<a href="#tabs-1" data-toggle="tab" class="active">肆式青春</a>
<a href="#tabs-2" data-toggle="tab">小日历</a>
<a href="#tabs-3" data-toggle="tab">关注我们</a>
</nav>
<div class="tab-content" id="nav-tabContent">
<div id="tabs-1" role="tabpanel" class="tab-pane fade show active">
<p class="index-section-card-tabs-1-content">
<!-- 内容 -->
活着就是为了改变世界,难道还有其他原因吗?
</p>
<div class="index-section-card-tabs-1-auther">
<!-- 作者 -->
——史蒂夫·乔布斯
</div>
</div>
<div id="tabs-2" role="tabpanel" class="tab-pane fade">
<div>
<!-- 日历相关 -->
</div>
</div>
<div id="tabs-3" role="tabpanel" class="tab-pane fade">
<div>
<img src="./img/weibo.png" alt="微博">
<span>微博</span>
</div>
<div>
<img src="./img/QQzone.png" alt="QQ空间">
<span>QQ空间</span>
</div>
<div>
<img src="./img/wechat.png" alt="微信">
<span>微信</span>
</div>
</div>
</div>
</section>
<!-- 背景切换 -->
<section class="swiper-container index-section-bg" id="index-banner">
<div class="swiper-wrapper">
<div class="swiper-slide index-bg-full" style="background-image: url(./img/index_background1.png)">
<a href="javascript:void(0);"></a>
</div>
<div class="swiper-slide index-bg-full" style="background-image: url(./img/index_background2.png)">
<a href="javascript:void(0);"></a>
</div>
<div class="swiper-slide index-bg-full" style="background-image: url(./img/index_background3.png)">
<a href="javascript:void(0);"></a>
</div>
<div class="swiper-slide index-bg-full" style="background-image: url(./img/index_background4.png)">
<a href="javascript:void(0);"></a>
</div>
<div class="swiper-slide index-bg-full" style="background-image: url(./img/index_background2.png)">
<a href="javascript:void(0);"></a>
</div>
</div>
</section>
<!-- 背景信息 -->
<div class="index-section-bg-info">
<p>背景作品来自:
<span>
<!-- 作者 -->
董骁
</span>
</p>
<div class="index-section-bg-change">
<img src="./img/index-left-arrow.png" alt="箭头" class="index-bg-prev">
<img src="./img/index-right-arrow.png" alt="箭头" class="index-bg-next">
</div>
</div>
</div>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/swiper.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>