forked from aidenZou/lCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lCalendar.html
67 lines (61 loc) · 1.76 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
65
66
67
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<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="请输入时间" id="dateInput" value="2018-09-17"/>
</div>
<script src="flexible.js"></script>
<script src="lCalendar.js"></script>
<script>
var calendar = new LCalendar();
calendar.init({
'trigger': '#dateInput', //标签id
'type': 'date', //date 调出日期选择 datetime 调出日期时间选择 time 调出时间选择 ym 调出年月选择
'minDate': '2000-1-1', //最小日期 注意:该值会覆盖标签内定义的日期范围
'maxDate': '2022-12-12' //最大日期 注意:该值会覆盖标签内定义的日期范围
});
</script>
</body>
</html>