forked from WangJia-mm/JavaScript201708
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
112 lines (106 loc) · 3.49 KB
/
detail.html
File metadata and controls
112 lines (106 loc) · 3.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>珠峰培训-个人信息详细页面</title>
<!--IMPORT CSS-->
<link rel="stylesheet/less" href="css/detail.less">
<script src="js/less-2.5.3.min.js"></script>
<!--REM-->
<script>
~function () {
window.addEventListener('resize', computed, false);
computed();
function computed() {
var deviceW = document.documentElement.clientWidth;
if (deviceW > 640) return;
document.documentElement.style.fontSize = deviceW / 640 * 100 + 'px';
}
}();
</script>
</head>
<body>
<main class="mainBox">
<!--NAV-->
<nav class="navBox">
<a href="index.html">首页</a>
<a href="javascript:;">登录</a>
<a href="javascript:;">注册</a>
<a href="detail.html"></a>
<a href="javascript:;">退出</a>
</nav>
<header class="headerBox">
<!--<div class="userInfo">
<img src="img/man.png" alt="" class="picture">
<p class="info">
<span>canfoo</span>
|
<span>编号 #000</span>
</p>
<p class="bio">...</p>
<div class="vote">7</div>
</div>
<div class="slogan">同一个世界同一个梦想,同一个世界同一个梦想同一个世界同一个梦想</div>
<a href="javascript:;" class="voteBtn">投他一票</a>-->
</header>
<section class="voteList" id="voteMy">
<div class="title clearfix">
<div class="left">
<span></span>
<span></span>
</div>
<div class="center">投递我的人员</div>
<div class="right">
<span></span>
<span></span>
</div>
</div>
<ul class="list">
<!--<li>
<a href="detail.html?userId=0">
<img src="img/man.png" alt="" class="picture">
<p class="title">canfoo</p>
<p class="bio">...</p>
</a>
<div class="vote">
<span class="voteNum">7</span>
<a href="javascript:;" class="voteBtn">投他一票</a>
</div>
</li>-->
</ul>
</section>
<section class="voteList" id="myVote">
<div class="title clearfix">
<div class="left">
<span></span>
<span></span>
</div>
<div class="center">我投递的人员</div>
<div class="right">
<span></span>
<span></span>
</div>
</div>
<ul class="list">
<!--<li>
<a href="detail.html?userId=0">
<img src="img/man.png" alt="" class="picture">
<p class="title">canfoo</p>
<p class="bio">...</p>
</a>
<div class="vote">
<span class="voteNum">7</span>
<a href="javascript:;" class="voteBtn">投他一票</a>
</div>
</li>-->
</ul>
</section>
</main>
<!--IMPORT JS-->
<script src="js/zepto.min.js"></script>
<script src="js/common.js"></script>
<script src="js/detail.js"></script>
</body>
</html>