-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathongoing.html
105 lines (105 loc) · 3.08 KB
/
ongoing.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<title>进行中</title>
<link rel="stylesheet" href="css/themes/myapp.min.css" />
<link rel="stylesheet" href="css/themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="css/jquery.mobile.structure-1.4.5.min.css" />
<link rel="stylesheet" type="text/css" href="css/waiting.css">
<link rel="stylesheet" type="text/css" href="css/panel.css">
</head>
<body>
<div data-role="page" id="page">
<div data-role="header" data-position="fixed" class="header_shadow">
<a href="#" data-rel="back" class="myback ui-btn-trans">返回</a>
<h1 class="mytitle">学生信息</h1>
<a href="#right_panel" class="ui-btn-trans mymenu"></a>
</div>
<div data-role="content">
<div id="stu_info" class="my-grid">
<div class="my-gridc1">
<div class="cir_img_wrapper">
<img src="images/head_sam.gif">
</div>
<div id="header_deco">
<img src="images/header_deco.png">
</div>
</div>
<div class="my-gridc2">
<ul>
<li id="name">吕哲扬</li>
<li id="grade">小学六年级</li>
<li id="addr">西安交通大学/仲英书院/3栋405</li>
<li id="subject">在读<span>一</span>门:<span>物理</span></li>
</ul>
</div>
</div>
<div id="ongoing">
正在补习:<span>数学</span>
</div>
<div id="timeline_wrap">
<h1>当前进度</h1>
<img src="images/cloud.png">
<div class="timeline">
<div class="timeline-date">
<ul>
<h2 class="second" style="position: relative;">
<span>2013年</span>
</h2>
<li>
<dl class="right">
<span>时间轴就要成功了!时间轴就要成功了!</span>
</dl>
</li>
<li>
<dl class="right">
<span>为了时间轴奋斗吧!时间轴就要成功了!时间轴就要成功了!</span>
</dl>
</li>
</ul>
</div>
<div class="timeline-date">
<ul>
<h2 class="second" style="position: relative;">
<span>2012年</span>
</h2>
<li>
<dl class="right">
<span>那一年的今天!</span>
</dl>
</li>
<li>
<dl class="right">
<span>前端之路慢慢修远!</span>
</dl>
</li>
</ul>
</div>
</div>
</div>
<div id="progress_wrap">
<span>总进度</span>
<span id="progress_bar"></span>
</div>
</div>
<div data-role="panel" data-position="right" data-position-fixed="true" data-display="reveal" id="right_panel">
<h2><img src="images/head_sam.gif"></h2>
<h1>袁拓</h1>
<ul id="sidelist">
<li><a href="#">返回首页</a></li>
<li><a href="#">更换账号</a></li>
<li><a href="#">退出登录</a></li>
</ul>
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript">
$(document).on("pagecreate",function(){
$('#right_panel').panel();
});
</script>
</html>