(function($) {
'use strict';
// Mean Menu JS
jQuery('.mean-menu').meanmenu({
meanScreenWidth: "991"
});
// Preloader JS
$(function() {
$('body').addClass('loaded');
});
// Nice Select JS
$('select').niceSelect();
// Header Sticky JS
$(window).on('scroll', function() {
if ($(this).scrollTop() >150){
$('.navbar-area').addClass("is-sticky");
}
else{
$('.navbar-area').removeClass("is-sticky");
}
});
// Hero Slider JS
$('.hero-slider').owlCarousel({
items:1,
loop: true,
margin: 0,
nav: true,
dots: false,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
animateOut: 'fadeOut',
navText: [
"",
"",
],
});
// Hero Slider Two JS
$('.hero-slider-two').owlCarousel({
items:1,
loop: true,
margin: 0,
nav: false,
dots: true,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
animateOut: "slideOutUp",
});
// Featured Slider JS
$('.featured-slider').owlCarousel({
items:1,
loop: true,
margin: 0,
nav: true,
dots: false,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
navText: [
"",
"",
],
});
// Partner Slider JS
$('.partner-slider').owlCarousel({
loop: true,
margin: 30,
nav: false,
dots: false,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
responsive:{
0:{
items: 2,
},
576:{
items: 3,
},
768:{
items: 4,
},
1200:{
items: 5,
}
}
});
// Projects Slider JS
$('.projects-slider').owlCarousel({
loop: true,
margin: 0,
nav: false,
dots: true,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
responsive:{
0:{
items: 2,
},
576:{
items: 3,
},
768:{
items: 3,
},
1200:{
items: 5,
}
}
});
// Testimonials Slider JS
$('.testimonials-slider').owlCarousel({
items:1,
loop: true,
margin: 0,
nav: true,
dots: false,
autoplay: true,
smartSpeed: 1000,
autoplayHoverPause: true,
navText: [
"",
"",
],
});
// Go To Top JS
// Scroll Event
$(window).on('scroll', function(){
var scrolled = $(window).scrollTop();
if (scrolled > 300) $('.go-top').addClass('active');
if (scrolled < 300) $('.go-top').removeClass('active');
});
// Click Event JS
$('.go-top').on('click', function() {
$("html, body").animate({ scrollTop: "0" }, 0);
});
// FAQ Accordion JS
$('.accordion').find('.accordion-title').on('click', function(){
// Adds Active Class
$(this).toggleClass('active');
// Expand or Collapse This Panel
$(this).next().slideToggle('fast');
// Hide The Other Panels
$('.accordion-content').not($(this).next()).slideUp('fast');
// Removes Active Class From Other Titles
$('.accordion-title').not($(this)).removeClass('active');
});
// Count Time JS
function makeTimer() {
var endTime = new Date("November 30, 2026 17:00:00 PDT");
var endTime = (Date.parse(endTime)) / 1000;
var now = new Date();
var now = (Date.parse(now) / 1000);
var timeLeft = endTime - now;
var days = Math.floor(timeLeft / 86400);
var hours = Math.floor((timeLeft - (days * 86400)) / 3600);
var minutes = Math.floor((timeLeft - (days * 86400) - (hours * 3600 )) / 60);
var seconds = Math.floor((timeLeft - (days * 86400) - (hours * 3600) - (minutes * 60)));
if (hours < "10") { hours = "0" + hours; }
if (minutes < "10") { minutes = "0" + minutes; }
if (seconds < "10") { seconds = "0" + seconds; }
$("#days").html(days + "Days");
$("#hours").html(hours + "Hours");
$("#minutes").html(minutes + "Minutes");
$("#seconds").html(seconds + "Seconds");
}
setInterval(function() { makeTimer(); }, 300);
// Popup Video JS
$('.popup-youtube, .popup-vimeo').magnificPopup({
disableOn: 300,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: false,
});
// Tabs JS
$('.tab ul.tabs').addClass('active').find('> li:eq(0)').addClass('current');
$('.tab ul.tabs li').on('click', function (g) {
var tab = $(this).closest('.tab'),
index = $(this).closest('li').index();
tab.find('ul.tabs > li').removeClass('current');
$(this).closest('li').addClass('current');
tab.find('.tab_content').find('div.tabs_item').not('div.tabs_item:eq(' + index + ')').slideUp();
tab.find('.tab_content').find('div.tabs_item:eq(' + index + ')').slideDown();
g.preventDefault();
});
// Subscribe form JS
$(".newsletter-form").validator().on("submit", function (event) {
if (event.isDefaultPrevented()) {
// handle the invalid form...
formErrorSub();
submitMSGSub(false, "Please enter your email correctly.");
} else {
// everything looks good!
event.preventDefault();
}
});
function callbackFunction (resp) {
if (resp.result === "success") {
formSuccessSub();
}
else {
formErrorSub();
}
}
function formSuccessSub(){
$(".newsletter-form")[0].reset();
submitMSGSub(true, "Thank you for subscribing!");
setTimeout(function() {
$("#validator-newsletter").addClass('hide');
}, 4000)
}
function formErrorSub(){
$(".newsletter-form").addClass("animated shake");
setTimeout(function() {
$(".newsletter-form").removeClass("animated shake");
}, 1000)
}
function submitMSGSub(valid, msg){
if(valid){
var msgClasses = "validation-success";
} else {
var msgClasses = "validation-danger";
}
$("#validator-newsletter, #validator-newsletter-2").removeClass().addClass(msgClasses).text(msg);
}
// AJAX MailChimp JS
$(".newsletter-form").ajaxChimp({
url: "https://Envy Theme.us20.list-manage.com/subscribe/post?u=60e1ffe2e8a68ce1204cd39a5&id=42d6d188d9", // Your url MailChimp
callback: callbackFunction
});
// Input Plus & Minus Number JS
$('.input-counter').each(function() {
var spinner = jQuery(this),
input = spinner.find('input[type="text"]'),
btnUp = spinner.find('.plus-btn'),
btnDown = spinner.find('.minus-btn'),
min = input.attr('min'),
max = input.attr('max');
btnUp.on('click', function() {
var oldValue = parseFloat(input.val());
if (oldValue >= max) {
var newVal = oldValue;
} else {
var newVal = oldValue + 1;
}
spinner.find("input").val(newVal);
spinner.find("input").trigger("change");
});
btnDown.on('click', function() {
var oldValue = parseFloat(input.val());
if (oldValue <= min) {
var newVal = oldValue;
} else {
var newVal = oldValue - 1;
}
spinner.find("input").val(newVal);
spinner.find("input").trigger("change");
});
});
// Odometer JS
$('.odometer').appear(function(e) {
var odo = $(".odometer");
odo.each(function() {
var countNumber = $(this).attr("data-count");
$(this).html(countNumber);
});
});
// Others Option For Responsive JS
$(".others-option-for-responsive .dot-menu").on("click", function(){
$(".others-option-for-responsive .container .container").toggleClass("active");
});
//WOW JS
new WOW().init();
// Product View Slider JS
var bigimage = $("#big");
var thumbs = $("#thumbs");
//var totalslides = 10;
var syncedSecondary = true;
bigimage
.owlCarousel({
items: 1,
slideSpeed: 2000,
nav: true,
autoplay: true,
dots: false,
loop: true,
responsiveRefreshRate: 200,
navText: [
"",
"",
]
})
.on("changed.owl.carousel", syncPosition);
thumbs
.on("initialized.owl.carousel", function() {
thumbs
.find(".owl-item")
.eq(0)
.addClass("current");
})
.owlCarousel({
items: 5,
dots: false,
nav: false,
navText: [
"",
"",
],
smartSpeed: 200,
slideSpeed: 500,
slideBy: 4,
responsiveRefreshRate: 100
})
.on("changed.owl.carousel", syncPosition2);
function syncPosition(el) {
//if loop is set to false, then you have to uncomment the next line
//var current = el.item.index;
//to disable loop, comment this block
var count = el.item.count - 1;
var current = Math.round(el.item.index - el.item.count / 2 - 0.5);
if (current < 0) {
current = count;
}
if (current > count) {
current = 0;
}
//to this
thumbs
.find(".owl-item")
.removeClass("current")
.eq(current)
.addClass("current");
var onscreen = thumbs.find(".owl-item.active").length - 1;
var start = thumbs
.find(".owl-item.active")
.first()
.index();
var end = thumbs
.find(".owl-item.active")
.last()
.index();
if (current > end) {
thumbs.data("owl.carousel").to(current, 100, true);
}
if (current < start) {
thumbs.data("owl.carousel").to(current - onscreen, 100, true);
}
}
function syncPosition2(el) {
if (syncedSecondary) {
var number = el.item.index;
bigimage.data("owl.carousel").to(number, 100, true);
}
}
thumbs.on("click", ".owl-item", function(e) {
e.preventDefault();
var number = $(this).index();
bigimage.data("owl.carousel").to(number, 300, true);
});
//skill JS
jQuery('.skill-bar').each(function() {
jQuery(this).find('.progress-content').animate({
width:jQuery(this).attr('data-percentage')
},2000);
jQuery(this).find('.progress-number-mark').animate(
{left:jQuery(this).attr('data-percentage')},
{
duration: 2000,
step: function(now, fx) {
var data = Math.round(now);
jQuery(this).find('.percent').html(data + '%');
}
});
});
// Sidebar Modal JS
$(".burger-menu").on('click', function() {
$('.sidebar-modal').toggleClass('active');
});
$(".sidebar-modal-close-btn").on('click', function() {
$('.sidebar-modal').removeClass('active');
});
// MixItUp JS
try {
var mixer = mixitup('#Container', {
controls: {
toggleDefault: 'none'
}
});
} catch (err) {}
})(jQuery);