-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathscript.js
193 lines (156 loc) · 4.55 KB
/
script.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
$(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++]);
}
}, 80);
};
})(jQuery);
// input text for typing animation
$("#holder").writeText("STUDENT + NOOBIE DEVELOPLER");
// 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: "285px"
}, 200);
});
// Then push them back */
$('.fa-times').click(function() {
$('.nav-screen').animate({
right: "-285px"
}, 200);
$('body').animate({
right: "0px"
}, 200);
});
$('.nav-links a').click(function() {
$('.nav-screen').animate({
right: "-285px"
}, 500);
$('body').animate({
right: "0px"
}, 500);
});
};
$(document).ready(main);
// initiate full page scroll
$('#fullpage').fullpage({
scrollBar: true,
responsiveWidth: 400,
navigation: true,
navigationTooltips: ['home', 'about', 'projects', 'contact', 'connect'],
anchors: ['home', 'about', 'projects', 'contact', 'connect'],
menu: '#myMenu',
fitToSection: false,
afterLoad: function ( anchorLink, index){
var loadedSection = $(this);
//using index
if(index==1){
/* add opacity to arrow */
$('.fa-chevron-down').each(function(){
$(this).css('opacity','1')
});
$('.header-links a').each(function(){
$(this).css('color','white')
});
}
else if(index!=1){
$('.header-links a').each(function(){
$(this).css('color','black')
});
}
//using index
if(index == 2){
/* animate skill bars */
$('.skillbar').each(function(){
$(this).find('.skillbar-bar').animate({
width:jQuery(this).attr('data-percent')
},2500);
});
}
}
});
// 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', '#projects', function(){
$.fn.fullpage.moveTo(3);
});
$(document).on('click', '#contact', function(){
$.fn.fullpage.moveTo(4);
});
// 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
}, 700);
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();
// Serialize the form data.
var formData = $(form).serialize();
// Submit the form using AJAX.
$.ajax({
type: 'POST',
url: $(form).attr('action'),
data: formData
})
.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('');
})
.fail(function(data) {
// Make sure that the formMessages div has the 'error' class.
$(formMessages).removeClass('success');
$(formMessages).addClass('error');
// 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.');
}
});
});
});
});