/*
Template: Egix - Business consulting HTML5 Template
Author: potenzaglobalsolutions
Design and Developed by: potenzaglobalsolutions.com
NOTE: This file contains all scripts for the actual Template.
*/
/*================================================
[ Table of contents ]
================================================
:: Preloader
:: Menu
:: Sticky
:: Tooltip
:: Popover
:: Counter
:: Owl carousel
:: Slick slider
:: Countdown
:: Swiper
:: Swiper Animation
:: Back to top
:: Magnific Popup
:: Search bar
:: Gsap
======================================
[ End table content ]
======================================*/
//POTENZA var
(function ($) {
"use strict";
var POTENZA = {};
/*************************
Predefined Variables
*************************/
var $window = $(window),
$document = $(document),
$body = $('body'),
$countdownTimer = $('.countdown'),
$counter = $('.counter'),
$progressBar = $('.skill-bar');
//Check if function exists
$.fn.exists = function () {
return this.length > 0;
};
/*************************
Preloader
*************************/
POTENZA.preloader = function () {
$("#load").fadeOut();
$('#pre-loader').delay(0).fadeOut('slow');
};
/*************************
Menu
*************************/
POTENZA.dropdownmenu = function () {
if ($('.navbar').exists()) {
$('.dropdown-menu a.dropdown-toggle').on('click', function (e) {
if (!$(this).next().hasClass('show')) {
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
var $subMenu = $(this).next(".dropdown-menu");
$subMenu.toggleClass('show');
$(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function (e) {
$('.dropdown-submenu .show').removeClass("show");
});
return false;
});
}
};
POTENZA.menuaddclass = function () {
$('.top-menu').on('click', function () {
$('.nav-menu').toggleClass('open-menu');
});
};
POTENZA.menuToggle = function () {
$('.header-overlay-menu .navbar-nav .nav-link').on('click', function () {
$(this).next('.dropdown-menu').slideToggle();
});
};
/*************************
Sticky
*************************/
POTENZA.isSticky = function () {
var $window = $(window);
var $header = $('.header');
var headerHeight = $header.outerHeight();
$window.scroll(function () {
var windowTop = $window.scrollTop();
// Si on a défilé plus loin que la hauteur de l'en-tête
if (windowTop >= headerHeight) {
$header.addClass('is-sticky sticky-show');
} else {
$header.removeClass('is-sticky sticky-show');
}
});
};
/*************************
Tooltip
*************************/
POTENZA.Tooltip = function () {
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
})
}
/*************************
Popover
*************************/
POTENZA.Popover = function () {
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl)
})
}
/*************************
Counter
*************************/
POTENZA.counters = function () {
var counter = jQuery(".counter");
if (counter.length > 0) {
$counter.each(function () {
var $elem = $(this);
$elem.appear(function () {
$elem.find('.timer').countTo();
});
});
}
};
/*************************
Owl carousel
*************************/
POTENZA.carousel = function () {
var owlslider = jQuery("#template.owl-carousel");
if (owlslider.length > 0) {
owlslider.each(function () {
var $this = $(this),
$items = ($this.data('items')) ? $this.data('items') : 1,
$loop = ($this.attr('data-loop')) ? $this.data('loop') : true,
$navdots = ($this.data('nav-dots')) ? $this.data('nav-dots') : false,
$navarrow = ($this.data('nav-arrow')) ? $this.data('nav-arrow') : false,
$autoplay = ($this.attr('data-autoplay')) ? $this.data('autoplay') : true,
$autospeed = ($this.attr('data-autospeed')) ? $this.data('autospeed') : 5000,
$smartspeed = ($this.attr('data-smartspeed')) ? $this.data('smartspeed') : 1000,
$autohgt = ($this.data('autoheight')) ? $this.data('autoheight') : false,
$space = ($this.attr('data-space')) ? $this.data('space') : 30,
$animateOut = ($this.attr('data-animateOut')) ? $this.data('animateOut') : false;
$(this).owlCarousel({
loop: $loop,
items: $items,
responsive: {
0: {
items: $this.data('xx-items') ? $this.data('xx-items') : 1
},
480: {
items: $this.data('xs-items') ? $this.data('xs-items') : 1
},
768: {
items: $this.data('sm-items') ? $this.data('sm-items') : 2
},
980: {
items: $this.data('md-items') ? $this.data('md-items') : 3
},
1200: {
items: $items
}
},
dots: $navdots,
autoplayTimeout: $autospeed,
smartSpeed: $smartspeed,
autoHeight: $autohgt,
margin: $space,
nav: $navarrow,
navText: ["", ""],
autoplay: $autoplay,
autoplayHoverPause: true
});
});
}
}
/*************************
Countdown
*************************/
POTENZA.countdownTimer = function () {
if ($countdownTimer.exists()) {
$countdownTimer.downCount({
date: '12/31/2024 12:00:00', // Month/Date/Year HH:MM:SS
offset: -4
});
}
}
/*************************
Swiper Slider
*************************/
POTENZA.historySwiperSlider = function () {
new Swiper('.swiper-container', {
loop: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
slidesPerView: 4,
paginationClickable: true,
spaceBetween: 30,
breakpoints: {
1199: {
slidesPerView: 3,
spaceBetween: 30
},
767: {
slidesPerView: 2,
spaceBetween: 30
},
480: {
slidesPerView: 1,
spaceBetween: 10
}
}
});
}
/*************************
Progressbar
*************************/
POTENZA.progressBar = function () {
if ($progressBar.exists()) {
$progressBar.each(function (i, elem) {
var $elem = $(this),
percent = $elem.attr('data-percent') || "100",
delay = $elem.attr('data-delay') || "100",
type = $elem.attr('data-type') || "%";
if (!$elem.hasClass('progress-animated')) {
$elem.css({
'width': '0%'
});
}
var progressBarRun = function () {
$elem.animate({
'width': percent + '%'
}, 'easeInOutCirc').addClass('progress-animated');
$elem.delay(delay).append('' + type + '' + percent + '');
};
$(elem).appear(function () {
setTimeout(function () {
progressBarRun();
}, delay);
});
});
}
};
/*************************
Back To Top
*************************/
POTENZA.BackToTop = function () {
var progressPath = document.querySelector('.progress-wrap path');
var pathLength = progressPath.getTotalLength();
progressPath.style.transition = progressPath.style.WebkitTransition = 'none';
progressPath.style.strokeDasharray = pathLength + ' ' + pathLength;
progressPath.style.strokeDashoffset = pathLength;
progressPath.getBoundingClientRect();
progressPath.style.transition = progressPath.style.WebkitTransition = 'stroke-dashoffset 10ms linear';
var updateProgress = function () {
var scroll = $(window).scrollTop();
var height = $(document).height() - $(window).height();
var progress = pathLength - (scroll * pathLength / height);
progressPath.style.strokeDashoffset = progress;
}
updateProgress();
$(window).scroll(updateProgress);
var offset = 50;
var duration = 550;
jQuery(window).on('scroll', function () {
if (jQuery(this).scrollTop() > offset) {
jQuery('.progress-wrap').addClass('active-progress');
} else {
jQuery('.progress-wrap').removeClass('active-progress');
}
});
jQuery('.progress-wrap').on('click', function (event) {
event.preventDefault();
jQuery('html, body').animate({ scrollTop: 0 }, duration);
return false;
})
};
/*************************
Search bar
*************************/
POTENZA.searchbar = function () {
if ($("#search").exists()) {
$('a[href="#search"]').on('click', function (event) {
event.preventDefault();
$('#search').addClass('open');
$('#search > form > input[type="search"]').focus();
});
$('#search, #search button.close').on('click keyup', function (event) {
if (event.target == this || event.target.className == 'close' || event.keyCode == 27) {
$(this).removeClass('open');
}
});
//Do not include! This prevents the form from submitting for DEMO purposes only!
$('form').submit(function (event) {
event.preventDefault();
return false;
})
}
}
/*************************
Magnific Popup
*************************/
POTENZA.mediaPopups = function () {
if ($(".popup-single").exists() || $(".popup-gallery").exists() || $('.modal-onload').exists() || $(".popup-youtube, .popup-vimeo, .popup-gmaps").exists()) {
if ($(".popup-single").exists()) {
$('.popup-single').magnificPopup({
type: 'image'
});
}
if ($(".popup-gallery").exists()) {
$('.popup-gallery').magnificPopup({
delegate: 'a.portfolio-img',
type: 'image',
tLoading: 'Loading image #%curr%...',
mainClass: 'mfp-img-mobile',
gallery: {
enabled: true,
navigateByImgClick: true,
preload: [0, 1] // Will preload 0 - before current, and 1 after the current image
}
});
}
if ($(".popup-youtube, .popup-vimeo, .popup-gmaps").exists()) {
$('.popup-youtube, .popup-vimeo, .popup-gmaps').magnificPopup({
disableOn: 700,
type: 'iframe',
mainClass: 'mfp-fade',
removalDelay: 160,
preloader: false,
fixedContentPos: false
});
}
var $modal = $('.modal-onload');
if ($modal.length > 0) {
$('.popup-modal').magnificPopup({
type: 'inline'
});
$(document).on('click', '.popup-modal-dismiss', function (e) {
e.preventDefault();
$.magnificPopup.close();
});
var elementTarget = $modal.attr('data-target');
setTimeout(function () {
$.magnificPopup.open({
items: {
src: elementTarget
},
type: "inline",
mainClass: "mfp-no-margins mfp-fade",
closeBtnInside: !0,
fixedContentPos: !0,
removalDelay: 500
}, 0)
}, 1500);
}
}
}
/*************************
Gsap
*************************/
gsap.set('.service-style-03 img.service-img', { yPercent: -50, xPercent: -50 });
let activeImage;
gsap.utils.toArray(".service-style-03").forEach((el) => {
let image = el.querySelector('img.service-img'),
setX, setY,
align = e => {
setX(e.clientX);
setY(e.clientY);
},
startFollow = () => document.addEventListener("mousemove", align),
stopFollow = () => document.removeEventListener("mousemove", align),
fade = gsap.to(image, { autoAlpha: 1, ease: "none", paused: true, onReverseComplete: stopFollow });
el.addEventListener('mouseenter', (e) => {
fade.play();
startFollow();
if (activeImage) { // if there's an actively-animating one, we should match its position here
gsap.set(image, { x: gsap.getProperty(activeImage, "x"), y: gsap.getProperty(activeImage, "y") });
}
activeImage = image;
setX = gsap.quickTo(image, "x", { duration: 0.6, ease: "power3" }),
setY = gsap.quickTo(image, "y", { duration: 0.6, ease: "power3" })
align(e);
});
el.addEventListener('mouseleave', () => fade.reverse());
});
/*************************
Cursor
*************************/
POTENZA.mouseCursor = function () {
if ($(".mouse-cursor").length > 0) {
function itCursor() {
var myCursor = jQuery(".mouse-cursor");
if (myCursor.length) {
if ($("body")) {
const e = document.querySelector(".cursor-in"),
t = document.querySelector(".cursor-out");
let n,
i = 0,
o = !1;
(window.onmousemove = function (s) {
o ||
(t.style.transform =
"translate(" + s.clientX + "px, " + s.clientY + "px)"),
(e.style.transform =
"translate(" + s.clientX + "px, " + s.clientY + "px)"),
(n = s.clientY),
(i = s.clientX);
}),
$("body").on(
"mouseenter",
"button,.btn,a",
function () {
e.classList.add("cursor-hidden"),
t.classList.add("cursor-hidden");
}
),
$("body").on(
"mouseleave",
"button, .btn,a",
function () {
($(this).is("button") &&
$(this).closest(".cursor-pointer").length) ||
(e.classList.remove("cursor-hidden"),
t.classList.remove("cursor-hidden"));
}
),
(e.style.visibility = "visible"),
(t.style.visibility = "visible");
}
}
}
itCursor();
}
}
/*************************
Shuffle
*************************/
POTENZA.shuffle = function () {
if ($('.my-shuffle-container').exists()) {
var Shuffle = window.Shuffle;
var element = document.querySelector('.my-shuffle-container');
var sizer = element.querySelector('.my-sizer-element');
var shuffleInstance = new Shuffle(element, {
itemSelector: '.grid-item',
sizer: sizer, // could also be a selector: '.my-sizer-element'
speed: 700,
columnThreshold: 0
});
jQuery(document).ready(function () {
jQuery(".btn-filter").on('click', function () {
var data_group = jQuery(this).attr('data-group');
if (data_group != 'all') {
shuffleInstance.filter([data_group]);
} else {
shuffleInstance.filter();
}
});
$(".filters-group .btn-filter").on('click', function () {
$(".filters-group .btn-filter").removeClass("active");
$(this).addClass("active");
});
});
}
}
/*************************
Portfolio Fancy
*************************/
POTENZA.portfolioFancy = function () {
var portfolioItem = $('.portfolio-fancy-wrapper .portfolio-item');
$(portfolioItem).hover(function () {
$(portfolioItem).removeClass("active");
$(this).addClass("active");
});
};
/*************************
Jarallax BG
*************************/
POTENZA.jarallaxBG = function () {
// jarallax(document.querySelectorAll('.jarallax'), {
// speed: 0.2
// });
if ($('.jarallax').exists()) {
jarallax(document.querySelectorAll('.jarallax'), {
speed: 0.2
});
}
};
/****************************************************
POTENZA Window load and functions
****************************************************/
//Window load functions
$window.on("load", function () {
POTENZA.preloader(),
POTENZA.shuffle(),
POTENZA.progressBar();
});
//Document ready functions
$document.ready(function () {
POTENZA.counters(),
POTENZA.dropdownmenu(),
POTENZA.menuaddclass(),
POTENZA.menuToggle(),
POTENZA.isSticky(),
POTENZA.countdownTimer(),
POTENZA.Tooltip(),
POTENZA.Popover(),
POTENZA.historySwiperSlider(),
POTENZA.searchbar(),
POTENZA.mediaPopups(),
POTENZA.carousel(),
POTENZA.portfolioFancy(),
POTENZA.mouseCursor(),
POTENZA.BackToTop(),
POTENZA.jarallaxBG();
});
})(jQuery);