-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenter.html
More file actions
69 lines (67 loc) · 2.18 KB
/
enter.html
File metadata and controls
69 lines (67 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<!--<meta name="viewport" content="width=device-width initial-scale=1.0"/>-->
<meta name="viewport" content="width=device-width,user-scalable=no">
<link rel="stylesheet" href="css/reset.css" />
<!-- uc强制竖屏 -->
<meta name="screen-orientation" content="portrait">
<!-- QQ强制竖屏 -->
<meta name="x5-orientation" content="portrait">
<!-- UC强制全屏 -->
<meta name="full-screen" content="yes">
<!-- QQ强制全屏 -->
<meta name="x5-fullscreen" content="true">
<!-- UC应用模式 -->
<meta name="browsermode" content="application">
<!-- QQ应用模式 -->
<meta name="x5-page-mode" content="app">
<!-- windows phone 点击无高光 -->
<meta name="msapplication-tap-highlight" content="no">
<link rel="stylesheet" href="css/enter.css" />
</head>
<body>
<section class="header">
<div><img src="img/enter_logo.png" alt="" /></div>
<div class="back"></div>
</section>
<section class="enter">
<form action="">
<div class="user clearfix"><input type="text" id="username" placeholder="用户名或者手机号" /></div>
<div class="password clearfix"><input type="password" id="password" placeholder="密码" /></div>
</form>
<div class="btn">
登录
</div>
<div class="forgetPsw">
忘记密码
</div>
<div class="tool">
<img src="img/qq.png" alt="" />
<img src="img/weixin.png" alt="" />
<img src="img/weibo.png" alt="" />
</div>
<p class="new">还没有游民账号? <a href="login.html">注册新账号</a></p>
</section>
<section class="prompt">
<div class="bg"></div>
<div class="box">
<p class="atext"></p>
<button>确定</button>
</div>
</section>
</body>
<script>
window.onload=function(){
var html=document.documentElement;
var hWidth=html.getBoundingClientRect().width;
html.style.fontSize=hWidth/15+'px';
}
</script>
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/myZoe.js"></script>
<script src="js/enter.js"></script>
</html>