-
Notifications
You must be signed in to change notification settings - Fork 0
/
calender.js
64 lines (53 loc) · 1.8 KB
/
calender.js
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
const date = new Date();
const calender = () => {
const monthDays = document.querySelector('.days');
const lastDate = new Date(date.getFullYear(), date.getMonth() + 1, 0).getDate();
// previous month
const preMonthLastDay = new Date(date.getFullYear(), date.getMonth(), 0);
const preMonthLastDayIndex = preMonthLastDay.getDay() + 1;
let preMonthLastDate = preMonthLastDay.getDate();
// current month
const lastDayOfMonth = new Date(date.getFullYear(), date.getMonth() + 1, 0);
const nextDays = 7 - lastDayOfMonth.getDay() - 1;
const months = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
]
document.querySelector(".date h1").innerHTML = months[date.getMonth()];
document.querySelector(".date p").innerHTML = new Date().toDateString();
let days = "";
// prev month days
for (let x = 0; x < preMonthLastDayIndex; x++) {
days = `<div class="pre-date">${preMonthLastDate--}</div>` + days;
monthDays.innerHTML = days;
}
// current month days
for (let i = 1; i <= lastDate; i++) {
days += new Date().getDate() == i && new Date().getMonth() == date.getMonth() ? `<div class="today">${i}</div>` : `<div>${i}</div>`
monthDays.innerHTML = days;
}
// next month days
for (let j = 1; j <= nextDays; j++) {
days += `<div class="next-date">${j}</div>`;
monthDays.innerHTML = days;
}
}
document.querySelector("#prev").addEventListener('click', () => {
date.setMonth(date.getMonth() - 1);
calender();
});
document.querySelector("#next").addEventListener('click', () => {
date.setMonth(date.getMonth() + 1);
calender();
});
calender();