-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathselect.html
87 lines (83 loc) · 1.96 KB
/
select.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
<!doctype html>
<html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title></title>
<script src="js/mui.min.js"></script>
<script src="js/common.js"></script>
<link href="css/mui.min.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/style_index.css" />
<style type="text/css">
.content {
position: absolute;
width: 100%;
height: 100vh;
margin: 0 auto;
background: #ffffff;
}
.logo_box{
width: 7.5rem;
height: 5.9rem;
background: #FF5556;
padding-top: 2.13rem;
}
.logo_box div{
width: 1.83rem;
height: 1.83rem;
margin-left: 2.81rem;
background: #FFFFFF;
background-image: url(images/logo.png);
background-size: 80% 80%;
background-position:center;
background-repeat:no-repeat;
border-radius: 6px;
}
.mui-btn-red{
width:3.88rem;
height: 0.94rem;
line-height: 0.94rem;
padding: 0;
background: #ff5556;
border:1px solid #FF5556;
}
.btn_02{
background: #ffffff;
color: #FF5556;
}
.btn_01{
margin-top: 1.41rem;
margin-bottom: 0.99rem;
}
</style>
</head>
<body>
<!--<header class="mui-bar mui-bar-nav">
<h1 class="mui-title">棒棒兼职</h1>
</header>-->
<div class="content">
<div class="logo_box">
<div></div>
</div>
<a><button type="button" class="mui-btn mui-btn-red mui-btn-block btn_01" value="0">我要招聘</button></a>
<a><button type="button" class="mui-btn mui-btn-red mui-btn-block btn_02" value="1">我要兼职</button></a>
</div>
</body>
<script>
(function($, doc) {
$.init();
$.back = function() {};
$.plusReady(function() {
mui('.content').on('tap', "button", function(e) {
localStorage.setItem("type", this.value);
mui.openWindow({
url: '/html/login.html',
id: 'login',
extras:{
type:this.value
}
});
});
});
}(mui, document));
</script>
</html>