-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.js
More file actions
215 lines (153 loc) · 4.88 KB
/
js.js
File metadata and controls
215 lines (153 loc) · 4.88 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
/** Repeat this function for any links with different goto address **/
/** THIS CODE IS NOT My own, it is taken from an online resource and was slightly edited **/
/** Trying to make animation stay after being triggered (ONCE AGAIN NOT MY code)
$("#newget").one("mouseover", function() {
$("#newget div").addClass('permahover');
});
**/
/** Trial USER / PASS form **/
/** Failed attempt at slide down navbar :( **/
$(document).ready(function() {
$('div.fadedown').fadeIn(1000).removeClass('fadedown')
}
)
$(document).ready(function () {
$('div.hidden').fadeIn(2000).removeClass('hidden');
});
$(document).ready(function () {
$('div.hiddenn').fadeIn(2000).removeClass('hiddenn');
});
$(document).ready(function () {
$('div.hiddennn').fadeIn(3000).removeClass('hiddennn');
});
$(document).ready(function () {
$('div.hiddennnn').fadeIn(3000).removeClass('hiddennnn');
});
$(document).ready(function () {
$('div.hidde').fadeIn(3000).removeClass('hidde');
});
function ElogIn(){
var username = document.getElementById("usernamee").value;
var password = document.getElementById("passworde").value;
if ( username == "Johnny" && password == "Doey123"){
alert ("Logged in successfully! Press 'Ok' to be redirected to the user interface");
window.location = "Employer.html";
return false;
}
else{
alert("Sorry, we couldn't find this account in the database. Please try again.");
return false;
}
}
function logIn(){
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
if ( username == "John" && password == "Doe123"){
alert ("Logged in successfully! Press 'Ok' to be redirected to the user interface");
window.location = "navbar.html";
return false;
}
else{
alert("Sorry, we couldn't find this account in the database. Please try again.");
return false;
}
}
$(document).ready(function(){
$(document).keydown(function(event) {
if (event.ctrlKey==true && (event.which == '61' || event.which == '107' || event.which == '173' || event.which == '109' || event.which == '187' || event.which == '189' ) ) {
event.preventDefault();
}
});
$(window).bind('mousewheel DOMMouseScroll', function (event) {
if (event.ctrlKey == true) {
event.preventDefault();
}
});
});
/** This function smooth scrolls to a certain location div when a certain div is clicked **/
$(document).ready(function(){
$('#superscroll').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#scrolldummy");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function(){
$('#smooth').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#scrolldummy");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function() {
var docHeight = $(document).height(),
windowHeight = $(window).height(),
scrollPercent;
$(window).scroll(function() {
scrollPercent = $(window).scrollTop() / (docHeight - windowHeight) * 100;
$('.scroll-progress').width(scrollPercent + '%');
});
});
$(document).ready(function(){
$('#videoz').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#utube");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function(){
$('#scrolltoabout').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#aboutpage");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function(){
$('#homie').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#yeboi");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function(){
$('#Aboutie').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#aboutpage");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});
$(document).ready(function(){
$('#teamie').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $("#scrollteam");
$('html, body').animate({
'scrollTop': $target.offset().top
}, 1700, function () {
});
});
});