-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
52 lines (49 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>calendar</title>
<link rel="stylesheet" href="css/global.css" />
<script src="js/skyseas_calendar.js"></script>
</head>
<body>
<input type="text" id="date1" value="click me" />
<div id="date2">click me</div>
<script>
new Skyseas_calendar({
id: "date2",
numMonths: 1,
date: {
total: 3,
rows: [{
time: "2014-9-7",
vId: "2"
}, {
time: "2014-8-17",
vId: "3"
}, {
time: "2014-8-27",
vId: "4"
}]
}
});
new Skyseas_calendar({
id: "date1",
numMonths: 2,
date: {
total: 3,
rows: [{
time: "2014-9-7",
vId: "2"
}, {
time: "2014-8-17",
vId: "3"
}, {
time: "2014-8-27",
vId: "4"
}]
}
});
</script>
</body>
</html>