forked from Twipped/Kalendae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (127 loc) · 3.17 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE HTML>
<html lang="ru-RU">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="build/kalendae.css" type="text/css" charset="utf-8">
<script src="build/kalendae.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
.kalendae .k-days span.closed {
background:red;
}
</style>
</head>
<body>
<h1>Kalendae</h1>
<p>Single Select</p>
<script type="text/javascript" charset="utf-8">
new Kalendae(document.body, {
months:1,
mode:'single',
selected:Kalendae.moment().subtract({M:1})
});
new Kalendae({
attachTo:document.body,
months:2,
mode:'single',
selected:Kalendae.moment().subtract({M:1})
});
new Kalendae({
attachTo:document.body,
months:3,
mode:'single',
selected:Kalendae.moment().subtract({M:1})
});
</script>
<p>Range Select</p>
<script type="text/javascript" charset="utf-8">
new Kalendae(document.body, {
months:1,
mode:'range',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
new Kalendae({
attachTo:document.body,
months:2,
mode:'range',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
new Kalendae({
attachTo:document.body,
months:3,
mode:'range',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
</script>
<p>Multi-Select</p>
<script type="text/javascript" charset="utf-8">
new Kalendae(document.body, {
months:1,
mode:'multiple',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
new Kalendae({
attachTo:document.body,
months:2,
mode:'multiple',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
new Kalendae({
attachTo:document.body,
months:3,
mode:'multiple',
selected:[Kalendae.moment().subtract({M:1}), Kalendae.moment().add({M:1})]
});
</script>
<hr>
<p>Blackout and Direction Tests</p>
<script type="text/javascript" charset="utf-8">
//direction
new Kalendae(document.body, {
months:3,
direction:'future'
});
//direction
new Kalendae(document.body, {
months:3,
direction:'past'
});
//blackout
new Kalendae(document.body, {
blackout: function (date) {
return Kalendae.moment(date).date() % 2; //blackout every other day
}
});
//blackout AND direction
new Kalendae(document.body, {
direction:'future',
blackout: function (date) {
return [1,0,0,0,0,0,1][Kalendae.moment(date).day()]; //blackout weekends
}
});
</script>
<hr>
<p>Class Map Test</p>
<script type="text/javascript" charset="utf-8">
//direction
var classMap = [];
classMap[ Kalendae.moment().add({d:5}).format('YYYY-MM-DD') ] = 'closed';
new Kalendae(document.body, {
dateClassMap: classMap
});
</script>
<hr>
Click this input element: <input type="text" value="2/16/2012" id="input1">
<script type="text/javascript" charset="utf-8">
var k4 = new Kalendae.Input('input1', {
months:2
});
</script>
<hr>
This calendar is auto-created.
<div class="auto-kal"></div>
<hr>
So is the one on this input.
<input type="text" class="auto-kal">
</body>
</html>