custom.js
1.05 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
(function ($) {
"use strict";
// PRE LOADER
$(window).load(function(){
$('.preloader').fadeOut(1000); // set duration in brackets
});
// navigation Section
$('.navbar-collapse a').on('click',function(){
$(".navbar-collapse").collapse('hide');
});
// Parallax Js
function initParallax() {
$('#home').parallax("50%", 50);
$('#service').parallax("50%", 40);
$('#about').parallax("50%", 20);
$('#work').parallax("50%", 30);
$('#contact').parallax("50%", 10);
}
initParallax();
// smoothscroll js
$(function() {
$('#home a').bind('click', function(event) {
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top - 49
}, 1000);
event.preventDefault();
});
});
// WOW Animation js
new WOW({ mobile: false }).init();
})(jQuery);