-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
395 lines (282 loc) · 11 KB
/
index.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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/* =================================================================
TOGGLE HAMBURGER MENUUUU
================================================================= */
const btn = document.querySelector("button.mobile-menu-button");
const menu = document.querySelector(".mobile-menu");
btn.addEventListener("click", () => {
menu.classList.toggle("hidden");
});
/* =================================================================
NAVBAR SCROLL REVEAL HOMMA
================================================================= */
const body = document.body;
const header = document.querySelector("header");
const main = document.querySelector("main");
const headerHeight = document.querySelector("header").offsetHeight;
main.style.top = headerHeight + "px";
let lastScroll = 0;
window.addEventListener("scroll", () => {
let currentScroll = window.pageYOffset;
if (currentScroll - lastScroll > 0) {
header.classList.add("scroll-down");
header.classList.remove("scroll-up");
}
else {
header.classList.add("scroll-up");
header.classList.remove("scroll-down");
}
lastScroll = currentScroll;
})
/* =================================================================
SCROLL FADE IN EFFECTI
================================================================= */
function fadeInAnimaatio() {
const nayta = document.querySelectorAll(".naytaX");
//laskee elementtiä ennen olevan yläosan koon.
for (let i = 0; i < nayta.length; i++) {
const ikkunanKorkeus = window.innerHeight;
const elementYlaosa = nayta[i].getBoundingClientRect().top;
const elementNakyviin = 100;
//renderöi animaation 130px elementin jälkeen.
if (elementYlaosa < ikkunanKorkeus - elementNakyviin) {
nayta[i].classList.add("active");
}
else {
nayta[i].classList.remove("active");
}
}
}
window.addEventListener("scroll", fadeInAnimaatio);
/* =================================================================
SCROLL ZOOM IN EFFECTI
================================================================= */
function zoomInAnimaatio() {
const nayta = document.querySelectorAll(".naytaZ");
//laskee elementtiä ennen olevan yläosan koon.
for (let i = 0; i < nayta.length; i++) {
const ikkunanKorkeus = window.innerHeight;
const elementYlaosa = nayta[i].getBoundingClientRect().top;
const elementNakyviin = 50;
//renderöi animaation 130px elementin jälkeen.
if (elementYlaosa < ikkunanKorkeus - elementNakyviin) {
nayta[i].classList.add("active");
}
else {
nayta[i].classList.remove("active");
}
}
}
window.addEventListener("scroll", zoomInAnimaatio);
/* =================================================================
TYPE WRITER EFFECTI
================================================================= */
var typeWriterElement = document.getElementById('typewriter');
var textArray = ["Joustavat", "Kevyet", "Mahtavat", "Modernit"];
function delWriter(text, i, cb) {
if (i >= 0 ) {
typeWriterElement.innerHTML = text.substring(0, i--);
var rndBack = 100 + Math.random() * 100;
setTimeout(function() {
delWriter(text, i, cb);
},rndBack);
} else if (typeof cb == 'function') {
setTimeout(cb,1000);
}
};
function typeWriter(text, i, cb) {
if ( i < text.length+1 ) {
typeWriterElement.innerHTML = text.substring(0, i++);
var rndTyping = 200 - Math.random() * 100;
setTimeout( function () {
typeWriter(text, i++, cb)
},rndTyping);
} else if (i === text.length+1) {
setTimeout( function () {
delWriter(text, i, cb)
},1000);
}
};
function StartWriter(i) {
if (typeof textArray[i] == "undefined") {
setTimeout( function () {
StartWriter(0)
},1000);
} else if(i < textArray[i].length+1) {
typeWriter(textArray[i], 0, function (){
StartWriter(i+1);
});
}
};
setTimeout( function () {
StartWriter(0);
},1000);
/* =================================================================
ANCHOR SMOOTH SCROLL
================================================================= */
$('.js-anchor-link').click(function(e){
e.preventDefault();
var target = $($(this).attr('href'));
if(target.length){
var scrollTo = target.offset().top;
$('body, html').animate({scrollTop: scrollTo+'px'}, 900);
}
});
/* =================================================================
SMOOTH SCROLLING
================================================================= */
jsScroll = document.getElementsByClassName('js-scroll')[0],
height = jsScroll.getBoundingClientRect().height - 1,
speed = 0.25
var offset = 0
body.style.height = Math.floor(height) + "px"
function smoothScroll() {
offset += (window.pageYOffset - offset) * speed
var scroll = "translateY(-" + offset + "px) translateZ(0)"
jsScroll.style.transform = scroll
raf = requestAnimationFrame(smoothScroll)
}
smoothScroll()
/* =================================================================
CONTACT FORM VALIDAATIO
================================================================= */
//Käyttäjän vastaus- osiot
const lomake = document.getElementById("lomake");
const etunimi = document.getElementById("etunimi");
const sukunimi = document.getElementById("sukunimi");
const sahkoposti = document.getElementById("sahkoposti");
const puhelinnumero = document.getElementById("puhelinnumero");
const viesti = document.getElementById("viesti");
//Auttaa viestin lähetysvaiheessa tarkistamaan kaikki kohdat.
var tarkistus1 = false;
var tarkistus2 = false;
var tarkistus3 = false;
var tarkistus4 = false;
var tarkistus5 = false;
//Estää viestin lähettämisen ennen kuin viesti on tarkistettu
lomake.addEventListener("submit", e =>{
e.preventDefault();
tarkistaViesti();
});
//Sähköposti tarkistus
const sahkopostiTarkistus = sahkoposti => {
const sahkopostiSL = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return sahkopostiSL.test(String(sahkoposti).toLowerCase());
}
//Sähköposti tarkistus
const sahkopostiTarkistus1 = sahkoposti1 => {
const sahkopostiSL = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return sahkopostiSL.test(String(sahkoposti1).toLowerCase());
}
//Puhelinnumero tarkistus
const puhelinnumeroTarkistus = puhelinnumero => {
const puhelinnumeroSL = /^\d{10}$/;
return puhelinnumeroSL.test(String(puhelinnumero));
}
//Tarkistaa lomakkeen inputtien mahdolliset epäkohdat.
const tarkistaViesti = (t) =>{
//Poistaa tyhjät kohdat.
const etunimiArvo = etunimi.value.trim();
const sukunimiArvo = sukunimi.value.trim();
const sahkopostiArvo = sahkoposti.value.trim();
const puhelinnumeroArvo = puhelinnumero.value.trim();
const viestiArvo = viesti.value.trim();
//Muuttaa reunojen väriä & ilmoitusta inputin mukaan.
//etunimi
if(t>=1 || t==0) {
if(etunimiArvo == "" || null) {
etunimi.style.borderColor = "red";
tarkistus1 = false;
}
else {
etunimi.style.borderColor = "green";
tarkistus1 = true;
}
}
//sukunimi
if(t>=2 || t==0) {
if(sukunimiArvo == "" || null) {
sukunimi.style.borderColor = "red";
tarkistus2 = false;
}
else {
sukunimi.style.borderColor = "green";
tarkistus2 = true;
}
}
//sahkoposti
if(t>=3 || t==0) {
if(sahkopostiArvo == "" || null) {
sahkoposti.style.borderColor = "red";
tarkistus3 = false;
}
else if (!sahkopostiTarkistus(sahkopostiArvo)) {
sahkoposti.style.borderColor = "red";
tarkistus3 = false;
}
else{
sahkoposti.style.borderColor = "green";
tarkistus3 = true;
}
}
//puhelinnumero
if(t>=4 || t==0) {
if(puhelinnumeroArvo == "" || null) {
puhelinnumero.style.borderColor = "red";
tarkistus4 = false;
}
else if (!puhelinnumeroTarkistus(puhelinnumeroArvo)) {
puhelinnumero.style.borderColor = "red";
tarkistus4 = false;
}
else{
puhelinnumero.style.borderColor = "green";
tarkistus4 = true;
}
}
//viesti
if(t>=5 || t==0) {
if(viestiArvo == "" || null) {
viesti.style.borderColor = "red";
tarkistus5 = false;
}
else {
viesti.style.borderColor = "green";
tarkistus5 = true;
}
}
//debuggausta varten
console.log(("ETUNIMI: "), tarkistus1,
(" SUKUNIMI: "), tarkistus2,
(" SAHKOPOSTI: "), tarkistus3,
(" PUHELINNUMERO: "), tarkistus4,
(" VIESTI: "),tarkistus5);
}
/* =================================================================
CONTACT FORM LÄHETYS
================================================================== */
const viestinLahetys = () => {
//Tarkistaa kaikki kentät.
if(tarkistus1 == false || tarkistus2 == false || tarkistus3 == false || tarkistus4 == false || tarkistus5 == false){
tarkistaViesti(1 && 2 && 3 && 4 && 5);
console.log("vikaa kentissä");
}
else{
console.log("viesti lähetys");
const form = document.querySelector("form");
const viestiLahetetty = document.getElementById("viestiLahetetty")
form.onsubmit = (e)=>{
viestiLahetetty.removeAttribute("hidden");
setTimeout(function(){
window.location.reload();
}, 3000);
e.preventDefault();
//Luo pyynnön lomake tietojen lähetykseen PHP:lle
let xhr = new XMLHttpRequest();
xhr.open("POST", "./index.php", true);
let formData = new FormData(form);
console.log(formData);
//Lähettää PHP:lle
xhr.send(formData);
}
}
}