(function($) {
"use strict";
$(window).on('load', function() {
/*Page Loader active
========================================================*/
$('#preloader').fadeOut();
// Sticky Nav
$(window).on('scroll', function() {
if ($(window).scrollTop() > 50) {
$('.scrolling-navbar').addClass('top-nav-collapse');
} else {
$('.scrolling-navbar').removeClass('top-nav-collapse');
}
});
// one page navigation
$('.navbar-nav').onePageNav({
currentClass: 'active'
});
/* slicknav mobile menu active */
$('.mobile-menu').slicknav({
prependTo: '.navbar-header',
parentTag: 'liner',
allowParentLinks: true,
duplicate: true,
label: '',
closedSymbol: '',
openedSymbol: '',
});
//MixitUp
$('#portfolio').mixItUp();
/* Testimonials Carousel
========================================================*/
$('#single-testimonial-item').owlCarousel({
items : 1,
navigation : true,
pagination: false,
slideSpeed : 300,
paginationSpeed : 400,
singleItem:true
});
$('#single-testimonial-item').find('.owl-prev').html('');
$('#single-testimonial-item').find('.owl-next').html('');
/* Counter
========================================================*/
$('.timer').countTo({
refreshInterval: 60,
formatter: function(value, options) {
return value.toFixed(options.decimals);
},
});
/* Back Top Link acive
========================================================*/
var offset = 200;
var duration = 500;
$(window).scroll(function() {
if ($(this).scrollTop() > offset) {
$('.back-to-top').fadeIn(400);
} else {
$('.back-to-top').fadeOut(400);
}
});
$('.back-to-top').on('click',function(event) {
event.preventDefault();
$('html, body').animate({
scrollTop: 0
}, 600);
return false;
});
});
}(jQuery));