-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (73 loc) · 3.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>AR Lecture Schedule App</title>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
<script src="https://unpkg.com/aframe-look-at-component@0.8.0/dist/aframe-look-at-component.min.js"></script>
<!-- Підключення AR.js з підтримкою геолокації -->
<script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"></script>
</head>
<body style="margin: 0; overflow: hidden;">
<a-scene
vr-mode-ui="enabled: false"
embedded
arjs="sourceType: webcam; debugUIEnabled: false;"
>
<a-text
id="class-info"
value="Checking class schedule..."
look-at="[camera]"
position="0 0 -3"
scale="5 5 5"
gps-entity-place="latitude: 48.5171345388595; longitude: 32.26523235502809;"
></a-text>
<a-camera gps-camera rotation-reader> </a-camera>
</a-scene>
</body>
<script>
// Масив з часами занять
const classTimes = [
{ start: '08:30', end: '10:00' },
{ start: '10:10', end: '11:40' },
{ start: '12:10', end: '13:40' },
{ start: '13:50', end: '15:20' }
];
// Функція для розбору часу з рядка (Переводимо час у мілісекунди від початку дня)
function parseTime(time) {
const [hours, minutes] = time.split(':').map(num => parseInt(num, 10));
let date = new Date();
date.setHours(hours, minutes, 0, 0);
return date;
}
// Функція для перевірки чи заняття зараз йде
function checkIfClassInSession(currentTime) {
for (let i = 0; i < classTimes.length; i++) {
const startTime = parseTime(classTimes[i].start);
const endTime = parseTime(classTimes[i].end);
if (currentTime >= startTime && currentTime < endTime) {
return { inSession: true, endTime };
}
}
return { inSession: false };
}
// Функція для оновлення статусу занять
function updateClassStatus() {
const currentTime = new Date();
const classStatus = checkIfClassInSession(currentTime);
const textElement = document.querySelector('#class-info');
if (classStatus.inSession) {
const timeLeft = (classStatus.endTime - currentTime) / 60000; // Перевести в хвилини
textElement.setAttribute('value', 'Class is in session. Time left: ' + timeLeft.toFixed(0) + ' minutes.');
} else {
textElement.setAttribute('value', 'No class is currently in session.');
}
}
//Налаштування інтервалу оновлення статусу занять
setInterval(updateClassStatus, 60000);
//Виклик оновлення статусу занять відразу при завантаженні
updateClassStatus();
</script>
</body>
</html>