-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
125 lines (101 loc) · 2.8 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
$(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
// 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', 'introduction', 'contact', 'connect'],
anchors: ['home', 'about', 'introduction', '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')
});
}
}
});
// move section down one
$(document).on('click', '#moveDown', function(){
$.fn.fullpage.moveSectionDown();
});
// fullpage.js link navigation
$(document).on('click', '#skills', function(){
$.fn.fullpage.moveTo(1);
});
$(document).on('click', '#introduction', function(){
$.fn.fullpage.moveTo(2);
});
// 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;
}
}
});
});
});