forked from xfhxbb/LCalendar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlCalendar.html
64 lines (58 loc) · 1.9 KB
/
lCalendar.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<title>日期时间选择控件</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
-webkit-appearance: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none;
box-sizing: border-box;
}
html,
body {
margin: 0 auto;
width: 100%;
min-height: 100%;
overflow-x: hidden;
-webkit-user-select: none;
}
body {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
}
input {
width: 90%;
height: 40px;
font-size: 18px;
border: 1px solid #19b5ee;
border-radius: 5px;
margin: 20px 5% 0 5%;
padding: 5px;
}
</style>
<link rel="stylesheet" href="lCalendar.css">
</head>
<body>
<div>
<input type="text" readonly="" name="input_date" placeholder="请输入日期" onClick="editDate(event);" data-hl-calendar="2000-01-01,2018-01-29" />
</div>
<div>
<input type="text" readonly="" name="input_date" placeholder="请输入日期和时间" onClick="editDatetime(event);" data-hl-calendar="2000-01-01,2018-01-29" />
</div>
<div>
<input type="text" readonly="" name="input_date" placeholder="请输入时间" onClick="editTime(event);" />
</div>
<script src="lCalendar.js"></script>
</body>
</html>