-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
307 lines (269 loc) · 7.92 KB
/
Copy pathscript.js
File metadata and controls
307 lines (269 loc) · 7.92 KB
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
$(document).ready(function () {
// typing animation
(function ($) {
$.fn.writeText = function (content) {
var contentArray = content.split(""),
current = 0,
elem = this;
setInterval(function () {
if (current < contentArray.length) {
elem.text(elem.text() + contentArray[current++]);
}
}, 50);
};
})(jQuery);
// input text for typing animation
$("#holder").writeText("TECH + ELECTRONICS + SOFTWARE");
// initialize wow.js
new WOW().init();
// Push the body and the nav over by 285px over
var main = function () {
$(".fa-bars").click(function () {
$(".nav-screen").animate(
{
right: "0px"
},
200
);
$("body").animate(
{
right: "312px"
},
200
);
});
// Then push them back */
$(".fa-times").click(function () {
$(".nav-screen").animate(
{
right: "-312px"
},
200
);
$("body").animate(
{
right: "0px"
},
200
);
});
$(".nav-links a").click(function () {
$(".nav-screen").animate(
{
right: "-312px"
},
500
);
$("body").animate(
{
right: "0px"
},
500
);
});
};
$(document).ready(main);
// initiate full page scroll
$("#fullpage").fullpage({
scrollBar: true,
responsiveWidth: 500,
navigation: true,
navigationTooltips: ["home", "about", "qualification", "portfolio", "contact", "connect"],
anchors: ["home", "about", "qualification", "portfolio", "contact", "connect"],
menu: "#myMenu",
fitToSection: true,
afterLoad: function (anchorLink, index) {
var loadedSection = $(this);
//using index
if (index == 1) {
/* add opacity to arrow */
$(".fa-chevron-down").each(function () {
$(this).css("opacity", "10");
});
$(".header-links a").each(function () {
$(this).css("color", "white");
});
$(".header-links").css("background-color", "transparent");
} else if (index != 1) {
$(".header-links a").each(function () {
$(this).css("color", "black");
});
$(".header-links").css("background-color", "white");
}
//using index
if (index == 2) {
/* animate skill bars */
$(".skillbar").each(function () {
$(this)
.find(".skillbar-bar")
.animate(
{
width: $(this).attr("data-percent")
},
500
);
});
}
}
});
// move section down one
$(document).on("click", "#moveDown", function () {
$.fn.fullpage.moveSectionDown();
});
// fullpage.js link navigation
$(document).on("click", "#skills", function () {
$.fn.fullpage.moveTo(2);
});
$(document).on("click", "#qualification", function () {
$.fn.fullpage.moveTo(3);
});
$(document).on("click", "#portfolio", function () {
$.fn.fullpage.moveTo(4);
});
$(document).on("click", "#contact", function () {
$.fn.fullpage.moveTo(5);
});
$(document).on("click", "#connect", function () {
$.fn.fullpage.moveTo(6);
});
$(document).on("click", "#home", function () {
$.fn.fullpage.moveTo(1);
});
// smooth scrolling
$(function () {
$("a[href*=#]:not([href=#])").click(function () {
if (
location.pathname.replace(/^\//, "") ==
this.pathname.replace(/^\//, "") &&
location.hostname == this.hostname
) {
var target = $(this.hash);
target = target.length
? target
: $("[name=" + this.hash.slice(1) + "]");
if (target.length) {
$("html,body").animate(
{
scrollTop: target.offset().top
},
800
);
return false;
}
}
});
});
//ajax form
$(function () {
// Get the form.
var form = $("#ajax-contact");
// Get the messages div.
var formMessages = $("#form-messages");
// Set up an event listener for the contact form.
$(form).submit(function (e) {
// Stop the browser from submitting the form.
e.preventDefault();
$(formMessages).text(
"Wait please, sending your message!"
);
var apiKey = '1477932a948ac179ca35c0462529d557';
var endpoint = 'https://api.mailjet.com/v3.1/send';
// Serialize the form data.
var formData = $(form).serialize();
var emailData = {
Messages: [
{
From: {
Email: "inghector1991@outlook.com",
Name: "Hector Carreno"
},
To: [
{
Email: 'inghector1991@outlook.com'
}
],
Subject: 'ContactMe - HC Tech development | My Web site',
HTMLPart: '<html><body><h1>Hello, recipient!</h1><p>This is the body of the email.</p><p>Name: ' + "Name" + '</p><p>Email: ' + "formData.Email" + '</p><p>Message: ' + "formData.Messages" + '</p></body></html>'
}
]
};
// fetch(endpoint, {
// method: 'POST',
// headers: {
// 'Authorization': 'Basic ' + apiKey,
// 'Content-Type': 'application/json'
// },
// body: JSON.stringify(emailData)
// })
// .then(function (response) {
// if (response.ok) {
// // Make sure that the formMessages div has the 'success' class.
// $(formMessages).addClass("success");
// $(formMessages).removeClass("error");
// // Set the message text.
// $(formMessages).text(
// "Message sent!"
// );
// // Clear the form.
// $("#name").val("");
// $("#email").val("");
// $("#message").val("");
// } else {
// // Make sure that the formMessages div has the 'error' class.
// $(formMessages).removeClass("success");
// $(formMessages).addClass("error");
// $(formMessages).text(
// "Oops! An error occured and your message could not be sent. (" + response.response + ")"
// );
// }
// })
// .catch(function (error) {
// $(formMessages).text(
// "Oops! A crash has occured and your message could not be sent. (" + error.response + ")"
// );
// });
// Serialize the form data.
var formData = $(form).serialize();
// Submit the form using AJAX.
$.ajax({
type: "POST",
url: endpoint,
data: emailData,
headers: {
'Authorization': 'Basic ' + apiKey,
'Content-Type': 'application/json'
},
body: JSON.stringify(emailData)
})
.done(function (response) {
// Make sure that the formMessages div has the 'success' class.
$(formMessages).removeClass("error");
$(formMessages).addClass("success");
// Set the message text.
$(formMessages).text(response);
// Clear the form.
$("#name").val("");
$("#email").val("");
$("#message").val("");
// Send the email
// sendEmail(formData);
})
.fail(function (data) {
// Make sure that the formMessages div has the 'error' class.
$(formMessages).removeClass("success");
$(formMessages).addClass("error");
$(formMessages).text(
"Oops! An error occured and your message could not be sent."
);
// Set the message text.
// if (data.responseText != "") {
// $(formMessages).text(data.responseText);
// } else {
// $(formMessages).text(
// "Oops! An error occured and your message could not be sent."
// );
// }
});
});
});
});