-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
100 lines (80 loc) · 2.37 KB
/
script.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
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
const selectMenu = document.querySelectorAll('select');
const content = document.querySelector('.content');
const currentTime = document.querySelectorAll('.clock');
const setAlarmTime = document.querySelector('.set');
const ring = new Audio('ringtone.mp3');
let alarmTime;
let isAlarmSet = false;
for (let i = 1; i <= 12; i++) {
i = i < 10 ? '0' + i : i;
let option = `<option value="${i}">${i}</option>`
selectMenu[0].lastElementChild.insertAdjacentHTML('afterend', option)
}
for (let i = 0; i <= 59; i++) {
i = i < 10 ? '0' + i : i;
let option = `<option value="${i}">${i}</option>`
selectMenu[1].lastElementChild.insertAdjacentHTML('afterend', option)
}
for (let i = 0; i <= 59; i++) {
i = i < 10 ? '0' + i : i;
let option = `<option value="${i}">${i}</option>`
selectMenu[2].lastElementChild.insertAdjacentHTML('afterend', option)
}
for (let i = 1; i <= 2; i++) {
let ampm = i == 1 ? 'AM' : 'PM';
let option = `<option value="${ampm}">${ampm}</option>`
selectMenu[3].lastElementChild.insertAdjacentHTML('afterend', option)
}
//clock
setInterval(clock, 1000)
function clock() {
const date = new Date();
h = date.getHours();
m = date.getMinutes();
s = date.getSeconds();
ampm = 'AM'
if (h >= 12) {
ampm = 'PM'
}
if (h == 0) {
h = 12;
}
if (h > 12) {
h = h % 12;
}
h = h < 10 ? '0' + h : h;
m = m < 10 ? '0' + m : m;
s = s < 10 ? '0' + s : s;
currentTime[0].innerText = h;
currentTime[1].innerText = m;
currentTime[2].innerText = s;
currentTime[3].innerText = ampm;
if (alarmTime == `${h}:${m}:${s} ${ampm}`) {
ring.play();
ring.loop = true;
}
}
clock();
function setAlarm() {
if (isAlarmSet) {
ring.pause();
alarmTime = '';
setAlarmTime.style.color = 'black';
setAlarmTime.style.backgroundColor = 'hsl(115,72%,53.7%)';
content.classList.remove('disable');
setAlarmTime.innerText = 'Set Alarm';
return isAlarmSet = false;
}
time = `${selectMenu[0].value}:${selectMenu[1].value}:${selectMenu[2].value} ${selectMenu[3].value}`;
alarmTime = time;
if (time.includes('Hour') || time.includes('Min') || time.includes('Sec') || time.includes('AM/PM')) {
alert('You Must Select From All The Option');
return
}
isAlarmSet = true;
content.classList.add('disable');
setAlarmTime.style.backgroundColor = '#690202';
setAlarmTime.style.color = '#fff';
setAlarmTime.innerText = 'Clear Alarm';
}
setAlarmTime.addEventListener('click', setAlarm);