-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
321 lines (275 loc) · 10.4 KB
/
scripts.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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
//GOOGLOVA OZNAKA za beleženje obiskov
// Prenesemo gtag.js skripto asinhrono
var script = document.createElement('script');
script.src = 'https://www.googletagmanager.com/gtag/js?id=G-TR1FD0790Y';
script.async = true;
document.head.appendChild(script);
// Počakamo, da se skripta naloži, nato nastavimo konfiguracijo
script.onload = function () {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-TR1FD0790Y');
};
//ODPRE/ZAPRE STRANSKO PLOŠČO
//odpre
function openNav() {
document.getElementById("myNav").style.width = "100%";
};
function closeNav() {
document.getElementById("myNav").style.width = "0%";
};
//ODPRE IN ZAPRE <DETAILS> MED :HOVER
//var detailPredmeti = document.querySelectorAll("details, summary, summary::hover");
/*var detail = document.querySelectorAll("details");
document.querySelectorAll("details").forEach(function(detail) {
detail.addEventListener("mouseenter", function(event) {
if (!this.classList.contains("odprto")) { //če ne vsebuje razreda "odprto"
this.setAttribute("open", "open"); // Odpre podrobnosti ob hooverju, če ni bilo kliknjeno nanj
}
});
detail.addEventListener("mouseleave", function(event) {
if (!this.classList.contains("odprto")) { //če ne vsebuje razreda "odprto"
this.removeAttribute("open"); // Zapre podrobnosti ob odhodu miške, če ni bilo kliknjeno nanj
}
});
detail.addEventListener("click", function() {
if (this.classList.contains("odprto")) { //če vsebuje razreda "odprto"
this.classList.remove("odprto"); // Odstrani razred "odprto", če je bil element že kliknjen
} else {
this.classList.add("odprto"); // Dodaj razred "odprto" ob kliku
}
});
});*/
//ODPRE DREVESNI PRIKAZ
//function odpriDrevo() {document.getElementById("drevesni").addAttribute("open");}
/*function odpriDrevo() {
// Poišči vse <ul> z razredom "drevesni"
var drevesniSeznami = document.querySelectorAll("ul.drevesni");
// Iteriraj skozi vse <ul> in preveri stanje vsakega <details>
drevesniSeznami.forEach(function(drevesniSeznam) {
var vsePodrobnosti = drevesniSeznam.querySelectorAll("details");
// Iteriraj skozi vse <details> in preveri stanje
vsePodrobnosti.forEach(function(podrobnosti) {
if (podrobnosti.hasAttribute("open")) {
// Če je drevo odprto, zapri
podrobnosti.removeAttribute("open");
} else {
// Če je drevo zaprto, odpri
podrobnosti.setAttribute("open", "");
}
});
});
// Premakni brskalnik na del strani z id-jem "details"
//window.location = "#details";
}*/
function odpriDrevo() {
var drevesniSeznami = document.querySelectorAll("ul.drevesni");
var odpriRod = document.getElementById("odpriRod");
var odpriZapri = document.getElementById("odpriZapri");
if (odpriRod.checked){
drevesniSeznami.forEach(function(drevesniSeznam) {
var vsePodrobnosti = drevesniSeznam.querySelectorAll("details");
// Iteriraj skozi vse <details> in preveri stanje
vsePodrobnosti.forEach(function(podrobnosti) {
podrobnosti.removeAttribute("open");
});
});
odpriZapri.innerHTML = `Odpri`;
} else {
drevesniSeznami.forEach(function(drevesniSeznam) {
var vsePodrobnosti = drevesniSeznam.querySelectorAll("details");
// Iteriraj skozi vse <details> in preveri stanje
vsePodrobnosti.forEach(function(podrobnosti) {
podrobnosti.setAttribute("open", "");
});
});
odpriZapri.innerHTML = `Zapri`;
}
};
//SPROTNO NALAGANJE SLIK
if ("IntersectionObserver" in window)
{
// get all the lazy images
var lazy_imgs = document.querySelectorAll('img[loading="lazy"]');
if (lazy_imgs.length > 0)
{
function intersection_handler(observed_imgs, observer)
{
observed_imgs.forEach (
(ev) => {
// image rootMargin is intersecting the viewport
if (ev.isIntersecting)
{
// remove the observer
observer.unobserve(ev.target);
// image hasn’t loaded yet so load it now
if (ev.target && !ev.target.complete)
{
ev.target.loading = "eager";
}
}
}
);
}
// calculate the desired rootMargins
var rootVertical = parseInt(window.innerHeight * 1.5);
var rootHorizontal = parseInt(window.innerWidth * 1.5);
let intersection_options = {
root: null,
rootMargin: `${rootVertical}px ${rootHorizontal}px`,
threshold: 0.0
}
// create the observer
let observer = new IntersectionObserver(
intersection_handler,
intersection_options
);
// attach observer to images
for (var img of lazy_imgs)
{
observer.observe(img);
}
}
}
//TEMNE IN SVETLE RAZLIČIVE SLIKE
/* const updateSourceMedia = (colorPreference) => {
const pictures = document.querySelectorAll('picture');
pictures.forEach((picture) => {
const sources = picture.querySelectorAll(`
source[media*="prefers-color-scheme"],
source[data-media*="prefers-color-scheme"]
`);
sources.forEach((source) => {
// Preserve the source `media` as a data-attribute
// to be able to switch between preferences
if (source.media.includes('prefers-color-scheme')) {
source.dataset.media = source.media;
}
// If the source element `media` target is the `preference`,
// override it to 'all' to show
// or set it to 'none' to hide
if (source.dataset.media.includes(colorPreference)) {
source.media = 'all';
} else {
source.media = 'none';
}
});
});
};
// Izberite stikalo z novim ID-jem
const toggle = document.querySelector('#stikaloNačina');
// Nastavite začetno temo glede na vrednost v atributu data-mode stikala
document.firstElementChild.setAttribute('data-theme', toggle.dataset.mode);
// Dodajte poslušalca dogodkov na stikalo za preklapljanje tem
toggle.addEventListener('click', () => {
// Preverite trenutni način in preklopite na nasprotno
const newMode = toggle.dataset.mode === 'light' ? 'dark' : 'light';
toggle.dataset.mode = newMode;
// Nastavite novo temo na <html> element
document.firstElementChild.setAttribute('data-theme', newMode);
// Posodobite slike glede na novo temo
updateSourceMedia(newMode);
});
// Prvotno klicanje funkcije za nastavitev slik na podlagi trenutnega načina
updateSourceMedia(toggle.dataset.mode);*/
//SVETLI NAČIN
// Funkcija za posodabljanje medijskih pogojev za slike
const updateSourceMedia = (colorPreference) => {
const pictures = document.querySelectorAll('picture');
pictures.forEach((picture) => {
const sources = picture.querySelectorAll(`
source[media*="prefers-color-scheme"],
source[data-media*="prefers-color-scheme"]
`);
sources.forEach((source) => {
if (source.media.includes('prefers-color-scheme')) {
source.dataset.media = source.media;
}
if (source.dataset.media.includes(colorPreference)) {
source.media = 'all';
} else {
source.media = 'none';
}
});
});
}
// Preveri shranjeno temo v krajevni shrambi
let svetliNačin = localStorage.getItem('svetliNačin');
const svetliNačinToggle = document.querySelector('#stikaloNačina');
// Funkcija za omogočanje svetlega načina
const enablesvetliNačin = () => {
document.body.classList.add('svetliNačin');
localStorage.setItem('svetliNačin', 'enabled');
document.firstElementChild.setAttribute('data-theme', 'light');
updateSourceMedia('light');
}
// Funkcija za onemogočanje svetlega načina (temni način)
const disablesvetliNačin = () => {
document.body.classList.remove('svetliNačin');
localStorage.setItem('svetliNačin', null);
document.firstElementChild.setAttribute('data-theme', 'dark');
updateSourceMedia('dark');
}
// Inicializacija teme ob nalaganju strani
if (svetliNačin === 'enabled') {
enablesvetliNačin();
} else {
disablesvetliNačin();
}
// Ko uporabnik klikne na stikalo
svetliNačinToggle.addEventListener('click', () => {
svetliNačin = localStorage.getItem('svetliNačin');
if (svetliNačin !== 'enabled') {
enablesvetliNačin();
} else {
disablesvetliNačin();
}
});
//NAČIN ZA TISKANJE
//pred tiskanjem spremeni v svetli način in odpre vse <details>
window.addEventListener('beforeprint',() =>
{
//doda razred svetliNačin <body>
document.body.classList.add('svetliNačin');
//odpre vse <details> pred tiskanjem
const allDetails = document.body.querySelectorAll('details');//izbere vse <details>
for(let i=0; i<allDetails.length; i++)
{
if(allDetails[i].open)
{
allDetails[i].dataset.open = '1';
}
else
{
allDetails[i].setAttribute('open', '');
}
}
});
//po tiskanju vrne v prejšnje stanje
window.addEventListener('afterprint',() =>
{
// preveri shranjene 'svetliNačin' v krajevni shrambi
let svetliNačin = localStorage.getItem('svetliNačin');
if (svetliNačin === 'enabled') {
enablesvetliNačin();
}
else {
disablesvetliNačin();
}
//po tiskanju zapre <details>, ki so bili pred tiskanjem zaprti
const allDetails = document.body.querySelectorAll('details');
for(let i=0; i<allDetails.length; i++)
{
if(allDetails[i].dataset.open)
{
allDetails[i].dataset.open = '';
}
else
{
allDetails[i].removeAttribute('open');
}
}
});