-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
426 lines (324 loc) · 10.4 KB
/
main.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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/* ===================================================================
* Infinity - Main JS
*
* ------------------------------------------------------------------- */
(function($) {
"use strict";
var cfg = {
defAnimation : "fadeInUp", // default css animation
scrollDuration : 800, // smoothscroll duration
mailChimpURL : 'https://facebook.us8.list-manage.com/subscribe/post?u=cdb7b577e41181934ed6a6a44&id=e6957d85dc'
},
$WIN = $(window);
// Add the User Agent to the <html>
// will be used for IE10 detection (Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0))
var doc = document.documentElement;
doc.setAttribute('data-useragent', navigator.userAgent);
/* Preloader
* -------------------------------------------------- */
var ssPreloader = function() {
$WIN.on('load', function() {
// force page scroll position to top at page refresh
$('html, body').animate({ scrollTop: 0 }, 'normal');
// will first fade out the loading animation
$("#loader").fadeOut("slow", function(){
// will fade out the whole DIV that covers the website.
$("#preloader").delay(300).fadeOut("slow");
});
});
};
/* FitVids
------------------------------------------------------ */
var ssFitVids = function() {
$(".fluid-video-wrapper").fitVids();
};
/* Masonry
------------------------------------------------------ */
var ssMasonryFolio = function() {
var containerBricks = $('.bricks-wrapper');
containerBricks.imagesLoaded( function() {
containerBricks.masonry( {
itemSelector: '.brick',
resize: true
});
});
};
/* Light Gallery
------------------------------------------------------- */
var ssLightGallery = function() {
$('#folio-wrap').lightGallery({
showThumbByDefault: false,
hash: false,
selector: ".item-wrap"
});
};
/* Flexslider
* ------------------------------------------------------ */
var ssFlexSlider = function() {
$WIN.on('load', function() {
$('#testimonial-slider').flexslider({
namespace: "flex-",
controlsContainer: "",
animation: 'slide',
controlNav: true,
directionNav: false,
smoothHeight: true,
slideshowSpeed: 7000,
animationSpeed: 600,
randomize: false,
touch: true,
});
});
};
/* Carousel
* ------------------------------------------------------ */
var ssOwlCarousel = function() {
$(".owl-carousel").owlCarousel({
nav: false,
loop: true,
margin: 50,
responsiveClass:true,
responsive: {
0:{
items:2,
margin: 20
},
400:{
items:3,
margin: 30
},
600:{
items:4,
margin: 40
},
1000:{
items:6
}
}
});
};
/* Menu on Scrolldown
* ------------------------------------------------------ */
var ssMenuOnScrolldown = function() {
var menuTrigger = $('#header-menu-trigger');
$WIN.on('scroll', function() {
if ($WIN.scrollTop() > 150) {
menuTrigger.addClass('opaque');
}
else {
menuTrigger.removeClass('opaque');
}
});
};
/* OffCanvas Menu
* ------------------------------------------------------ */
var ssOffCanvas = function() {
var menuTrigger = $('#header-menu-trigger'),
nav = $('#menu-nav-wrap'),
closeButton = nav.find('.close-button'),
siteBody = $('body'),
mainContents = $('section, footer');
// open-close menu by clicking on the menu icon
menuTrigger.on('click', function(e){
e.preventDefault();
menuTrigger.toggleClass('is-clicked');
siteBody.toggleClass('menu-is-open');
});
// close menu by clicking the close button
closeButton.on('click', function(e){
e.preventDefault();
menuTrigger.trigger('click');
});
// close menu clicking outside the menu itself
siteBody.on('click', function(e){
if( !$(e.target).is('#menu-nav-wrap, #header-menu-trigger, #header-menu-trigger span') ) {
menuTrigger.removeClass('is-clicked');
siteBody.removeClass('menu-is-open');
}
});
};
/* Smooth Scrolling
* ------------------------------------------------------ */
var ssSmoothScroll = function() {
$('.smoothscroll').on('click', function (e) {
var target = this.hash,
$target = $(target);
e.preventDefault();
e.stopPropagation();
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, cfg.scrollDuration, 'swing').promise().done(function () {
// check if menu is open
if ($('body').hasClass('menu-is-open')) {
$('#header-menu-trigger').trigger('click');
}
window.location.hash = target;
});
});
};
/* Placeholder Plugin Settings
* ------------------------------------------------------ */
var ssPlaceholder = function() {
$('input, textarea, select').placeholder();
};
/* Alert Boxes
------------------------------------------------------- */
var ssAlertBoxes = function() {
$('.alert-box').on('click', '.close', function() {
$(this).parent().fadeOut(500);
});
};
/* Animations
* ------------------------------------------------------- */
var ssAnimations = function() {
if (!$("html").hasClass('no-cssanimations')) {
$('.animate-this').waypoint({
handler: function(direction) {
var defAnimationEfx = cfg.defAnimation;
if ( direction === 'down' && !$(this.element).hasClass('animated')) {
$(this.element).addClass('item-animate');
setTimeout(function() {
$('body .animate-this.item-animate').each(function(ctr) {
var el = $(this),
animationEfx = el.data('animate') || null;
if (!animationEfx) {
animationEfx = defAnimationEfx;
}
setTimeout( function () {
el.addClass(animationEfx + ' animated');
el.removeClass('item-animate');
}, ctr * 30);
});
}, 100);
}
// trigger once only
this.destroy();
},
offset: '95%'
});
}
};
/* Intro Animation
* ------------------------------------------------------- */
var ssIntroAnimation = function() {
$WIN.on('load', function() {
if (!$("html").hasClass('no-cssanimations')) {
setTimeout(function(){
$('.animate-intro').each(function(ctr) {
var el = $(this),
animationEfx = el.data('animate') || null;
if (!animationEfx) {
animationEfx = cfg.defAnimation;
}
setTimeout( function () {
el.addClass(animationEfx + ' animated');
}, ctr * 300);
});
}, 100);
}
});
};
/* Contact Form
* ------------------------------------------------------ */
var ssContactForm = function() {
/* local validation */
$('#contactForm').validate({
/* submit via ajax */
submitHandler: function(form) {
var sLoader = $('#submit-loader');
$.ajax({
type: "POST",
url: "inc/sendEmail.php",
data: $(form).serialize(),
beforeSend: function() {
sLoader.fadeIn();
},
success: function(msg) {
// Message was sent
if (msg == 'OK') {
sLoader.fadeOut();
$('#message-warning').hide();
$('#contactForm').fadeOut();
$('#message-success').fadeIn();
}
// There was an error
else {
sLoader.fadeOut();
$('#message-warning').html(msg);
$('#message-warning').fadeIn();
}
},
error: function() {
sLoader.fadeOut();
$('#message-warning').html("Something went wrong. Please try again.");
$('#message-warning').fadeIn();
}
});
}
});
};
/* AjaxChimp
* ------------------------------------------------------ */
var ssAjaxChimp = function() {
$('#mc-form').ajaxChimp({
language: 'es',
url: cfg.mailChimpURL
});
// Mailchimp translation
//
// Defaults:
// 'submit': 'Submitting...',
// 0: 'We have sent you a confirmation email',
// 1: 'Please enter a value',
// 2: 'An email address must contain a single @',
// 3: 'The domain portion of the email address is invalid (the portion after the @: )',
// 4: 'The username portion of the email address is invalid (the portion before the @: )',
// 5: 'This email address looks fake or invalid. Please enter a real email address'
$.ajaxChimp.translations.es = {
'submit': 'Submitting...',
0: '<i class="fa fa-check"></i> We have sent you a confirmation email',
1: '<i class="fa fa-warning"></i> You must enter a valid e-mail address.',
2: '<i class="fa fa-warning"></i> E-mail address is not valid.',
3: '<i class="fa fa-warning"></i> E-mail address is not valid.',
4: '<i class="fa fa-warning"></i> E-mail address is not valid.',
5: '<i class="fa fa-warning"></i> E-mail address is not valid.'
}
};
/* Back to Top
* ------------------------------------------------------ */
var ssBackToTop = function() {
var pxShow = 500, // height on which the button will show
fadeInTime = 400, // how slow/fast you want the button to show
fadeOutTime = 400, // how slow/fast you want the button to hide
scrollSpeed = 300, // how slow/fast you want the button to scroll to top. can be a value, 'slow', 'normal' or 'fast'
goTopButton = $("#go-top")
// Show or hide the sticky footer button
$(window).on('scroll', function() {
if ($(window).scrollTop() >= pxShow) {
goTopButton.fadeIn(fadeInTime);
} else {
goTopButton.fadeOut(fadeOutTime);
}
});
};
/* Initialize
* ------------------------------------------------------ */
(function ssInit() {
ssPreloader();
ssFitVids();
ssMasonryFolio();
ssLightGallery();
ssFlexSlider();
ssOwlCarousel();
ssMenuOnScrolldown();
ssOffCanvas();
ssSmoothScroll();
ssPlaceholder();
ssAlertBoxes();
ssAnimations();
ssIntroAnimation();
ssContactForm();
ssAjaxChimp();
ssBackToTop();
})();
})(jQuery);