-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
348 lines (266 loc) · 13 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
window.addEventListener('load', () => {
alert('DEPRECADO / DEPRECATED');
});
const vermas_btn = document.querySelector('.vermas_btn ');
function view_more() {
document.querySelector('.section_bio_div').classList.toggle('active_section_bio_div');
document.querySelector('.vermas').classList.toggle('active_vermas');
if (document.querySelector('.vermas').classList.contains('active_vermas')) {
vermas_btn.innerHTML = 'ver menos';
vermas_btn.style.bottom = '3em';
} else {
vermas_btn.style.removeProperty('bottom');
vermas_btn.innerHTML = 'ver mas';
}
}
vermas_btn.addEventListener('click', view_more)
/////////////////////////////////////////////////////////////////////////
const habilidades = document.querySelector('.section_skills_div_containers');
function efectoHabilidades() {
let skills = document.getElementById("section_skills");
let distancia_skills = window.innerHeight - skills.getBoundingClientRect().top;
if (distancia_skills >= 300) {
const habilidades = document.getElementsByClassName("progreso");
habilidades[0].classList.add("html");
habilidades[1].classList.add("css");
habilidades[2].classList.add("javascript");
habilidades[3].classList.add("react");
habilidades[4].classList.add("git");
habilidades[5].classList.add("comunicacion");
habilidades[6].classList.add("trabajo_equipo");
habilidades[7].classList.add("dedicacion");
habilidades[8].classList.add("ingles_comprension");
habilidades[9].classList.add("ingles_oral");
}
}
habilidades.addEventListener('mouseover', efectoHabilidades);
////////////////////////////////////////////////////////////////////////////////////
const contenedor_img = document.querySelector('.header_container_img')
const imagen = document.querySelector('.header_img');
const imagen_hover = document.querySelector('.header_img');
const parrafo_first = document.querySelector('.first');
const parrafo_second = document.querySelector('.second');
function hoverText() {
parrafo_first.classList.toggle('text_hover_first');
parrafo_second.classList.toggle('text_hover_second');
contenedor_img.insertAdjacentHTML('beforebegin', `
<div class='div_saludo'>
<p>Soy<br><strong>Sebastian</strong>👋<br>no<br> dudes en<br>contactarme</p>
</div>
`)
};
function hoverTextCancel() {
setTimeout(() => {
parrafo_first.classList.remove('text_hover_first');
parrafo_second.classList.remove('text_hover_second');
document.querySelector('.div_saludo').remove();
}, 200);
};
imagen.addEventListener('mouseover', hoverText);
imagen_hover.addEventListener('mouseout', hoverTextCancel);
////////////////////////// ZONA HORARIA /////////////////////////////////////////////////////////////////////////////////////////////////////
const time = document.getElementById('date');
setInterval(() => {
const date = new Date();
time.innerHTML = date.toLocaleTimeString();
}, 1000);
/////////////////////// FORMULARIO //////////////////////////////////////////////////
const section_form = document.querySelector('.section_contact')
const formulario = document.querySelector('.section_contact_form');
const btn = document.querySelector(".btn-enviar");
const check = document.querySelector(".check");
const checkText = document.querySelector(".checkText");
const mailto = document.querySelector('#mailto');
function handleSubmit(e) {
const form = new FormData(this);
const nombre = document.getElementById('nombre').value;
const email = document.querySelector('.email').value;
const expReg = /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/;
const verificar = expReg.test(email);
mailto.setAttribute('href', `mailto:[email protected]?subject=nombre: ${form.get('name')} email: ${form.get('email')} mensaje: ${form.get('message')}`);
mailto.click();
if (nombre && verificar) {
//activamos "BURBUJA CONTENEDOR CHECK" y "CHECK ENVIADO"
setTimeout(() => {
check.classList.add("check-1");
btn.classList.add("send")
}, 5000);
// activamos "MENSAJE CONFIRMANDO EL ENVIO"
setTimeout(() => {
checkText.classList.add("check-2");
checkText.innerHTML += `<div class="innerTextConfirm"><div class="charge"></div><p>Comprobando los datos</p></div><br><br><br><div class="appear_text">Tu información se envio correctamente<div><br><br><br><br> `;
}, 200)
setTimeout(() => {
checkText.remove();
formulario.remove();
section_form.classList.add('section_contact_confirm')
section_form.innerHTML += `<div class='section_form_innerHTML'>Gracias<br><br> <strong style="text-transform: uppercase;">${nombreInput.value}</strong><br><br>por<br><br>tenerme en cuenta 😄<br><br></div>`
}, 8000);
}
e.preventDefault();
}
formulario.addEventListener('submit', handleSubmit);
////////////// INTERACTUAMOS CON EL BOTON ENVIAR /////////////////////////////////////////////
function validarForm() {
const expReg = /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/;
const verificar = expReg.test(emailInput.value);
if (nombreInput.value == "") {
nombreInput.classList.toggle('wrongName')
nombreInput.insertAdjacentHTML('beforebegin',
`<p class="campo1"style="color:red; position:absolute; display:block; transform: translateY(5em); width: max-content;font-size: .9em">
Campo Obligatorio
</p>`);
btn.classList.toggle("sendFalse");
setTimeout(() => {
btn.classList.remove("sendFalse");
nombreInput.classList.remove('wrongName');
document.querySelector('.campo1').remove();
}, 1500);
}
if (emailInput.value == "" || verificar == false) {
emailInput.classList.toggle('wrongEmail');
emailInput.insertAdjacentHTML('beforebegin',
`<p class="campo2"style="color:red; position:absolute; display:block; transform: translateY(5em); width: max-content;font-size: .9em">
Campo Obligatorio
</p>`);
btn.classList.toggle("sendFalse2");
setTimeout(() => {
btn.classList.remove("sendFalse2");
emailInput.classList.remove('wrongEmail');
document.querySelector('.campo2').remove();
}, 1500);
}
};
btn.addEventListener('click', validarForm);
/////////////////// CHEQUEAMOS EL NOMBRE INGRESADO /////////////////////////////////////////
const labelName = document.querySelector('.labelName');
const nombreInput = document.getElementById('nombre');
function checkName() {
if (nombreInput.value.length < 3) {
nombreInput.classList.toggle('wrongName');
} else {
nombreInput.classList.toggle('checkName');
setTimeout(() => {
labelName.innerHTML += '<p class="parrafoName">✔️</p>';
document.getElementById('nombre').value = nombreInput.value;
}, 200);
};
};
nombreInput.addEventListener('change', checkName);
/////////////////// CHEQUEAMOS EL MAIL INGRESADO /////////////////////////////////////////
const labelEmail = document.querySelector('.labelEmail');
const emailInput = document.querySelector('.email');
function checkEmail() {
const expReg = /^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/;
const verificar = expReg.test(emailInput.value);
if (verificar) {
emailInput.classList.toggle('checkMail');
setTimeout(() => {
labelEmail.innerHTML += '<p class="parrafoEmail">✔️</p>';
document.querySelector('.email').value = emailInput.value;
}, 200);
} else {
emailInput.classList.toggle('wrongEmail');
btn.classList.toggle("sendFalse");
emailInput.insertAdjacentHTML('beforebegin',
`<p class='check_format'style="color:red; position:absolute; display:block; transform: translateY(5em); width: max-content;font-size: .9em">
Debe ser un formato de mail valido
</p>`)
setTimeout(() => {
document.querySelector('.check_format').remove();
btn.classList.remove('sendFalse');
emailInput.classList.remove('wrongEmail');
}, 1500);
}
};
emailInput.addEventListener('change', checkEmail);
/////////////////////// MENU RESPONSIVE //////////////////////////////////////////////////
const menu = document.querySelector('.menu_span')
const line1 = document.querySelector(".line1");
const line2 = document.querySelector(".line2");
const line3 = document.querySelector(".line3");
const menu_appear = document.querySelector('.menu_hover');
const header = document.querySelector('.header_container');
const main = document.querySelector('.main_container');
function menu_hover() {
line1.classList.toggle("active_line1");
line2.classList.toggle("active_line2");
line3.classList.toggle("active_line3");
menu_appear.classList.toggle('active_menu_hover');
header.classList.toggle('blur');
main.classList.toggle('blur');
window.onscroll = function () {
setTimeout(() => {
line1.classList.remove("active_line1");
line2.classList.remove("active_line2");
line3.classList.remove("active_line3");
menu_appear.classList.remove('active_menu_hover');
header.classList.remove('blur');
main.classList.remove('blur');
efectoHabilidades();
}, 600);
}
};
menu.addEventListener('click', menu_hover);
/////////////////////// PROYECTOS-BOTON //////////////////////////////
const btn_proyect = document.querySelector('.proyecto_img_btn');
const btn_repo = document.querySelector('.proyecto_img_link')
const proyect_cont_img = document.querySelector('.proyectos_img_div');
const imagen_preview = document.querySelector('.proyecto_img');
function preview() {
proyect_cont_img.classList.toggle('proyect_cont_img');
imagen_preview.classList.toggle('imagen_preview');
if (proyect_cont_img.classList.contains('proyect_cont_img')) {
btn_proyect.innerHTML = 'X';
btn_proyect.style.boxShadow = 'inset 0 0 20px red';
btn_proyect.style.background = '#ff3b3bc4';
btn_proyect.style.color = 'white';
} else {
btn_proyect.innerHTML = 'Preview';
btn_proyect.style.removeProperty('box-shadow');
btn_proyect.style.removeProperty('background');
}
}
btn_proyect.addEventListener('click', preview);
//////////////////////////////////////////////////////////////
const img = document.querySelector('.proyecto_img ');
function hover_text_img() {
img.insertAdjacentHTML('beforebegin', '<div class="responsive_p"> RESONSIVE DESIGN</div>')
setTimeout(() => {
document.querySelector('.responsive_p').remove();
}, 4000);
}
img.addEventListener('mouseover', hover_text_img);
/////////////////////// PROYECTOS //////////////////////////////
const proyect = document.querySelector('.proyectos_description_div');
const row2 = document.querySelector('.proyecto_row2')
const row3 = document.querySelector('.proyecto_row3')
const row4 = document.querySelector('.proyecto_row4')
const parrafo = document.querySelector('.proyectos_p')
function bouncing() {
row2.style.animation = 'bouncing_html 1.5s linear';
row3.style.animation = 'bouncing_css 1.3s linear';
row4.style.animation = 'bouncing_js 1.7s linear';
parrafo.style.animation = 'scale_p 600ms linear';
if (window.screen.width < 600) {
row2.style.animation = 'bouncing_Y 500ms linear';
row3.style.animation = 'bouncing_Y 1s linear';
row4.style.animation = 'bouncing_Y 1.2s linear';
}
};
proyect.addEventListener('mouseover', bouncing);
//////////////////////////////////////////////////////////////////////
const proyectos_img_div = document.querySelector('.proyectos_img_div');
function view_links() {
btn_proyect.style.transform = 'translateX(0)'
btn_repo.style.transform = 'translateX(0)'
if (window.screen.width < 600) {
proyectos_img_div.insertAdjacentHTML('beforebegin', ` <a class="link" href="https://github.com/SebaPerez90/PORTFOLIO" target="_blank">Repositorio</a>`)
}
}
function cancel_links() {
btn_proyect.style.removeProperty('transform');
btn_repo.style.removeProperty('transform');
}
proyectos_img_div.addEventListener('mouseover', view_links);
proyectos_img_div.addEventListener('mouseout', cancel_links);