forked from t1m0n/air-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-dev.html
57 lines (46 loc) · 1.4 KB
/
index-dev.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<title>Air Datepicker - development</title>
<style type="text/css">
body {
/*width: 3000px;*/
}
.container {
max-width: 700px;
margin: 400px auto;
overflow: auto;
height: 500px;
position: relative;
}
input[type='text'] {
width: 300px;
height: 32px;
}
.input-wrap {
padding: 1px;
}
.air-datepicker.-anime- {
left: unset;
}
</style>
</head>
<body>
<div class="dp-custom"></div>
<div class="container">
<div class='input-wrap'>
<input type="text" readonly id="dp1" />
</div>
<!-- <div id='dp1' ></div>-->
<!-- <div id='dp2' />-->
<button id='update'>update</button>
<button id='destroy'>destory</button>
<button id='action'>action</button>
<input type='text' id='alt-field' placeholder='alt field'/>
<!-- <input type='text' id='dp2'/>-->
<!-- <input type='date'/>-->
</div>
</body>
</html>