forked from website/openpower.foundation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.9 KiB
JavaScript
129 lines
3.9 KiB
JavaScript
jQuery(document).ready(function($) {
|
|
|
|
// Header fixed and Back to top button
|
|
$(window).scroll(function() {
|
|
if ($(this).scrollTop() > 100) {
|
|
$('.back-to-top').fadeIn('slow');
|
|
$('#header').addClass('header-fixed');
|
|
} else {
|
|
$('.back-to-top').fadeOut('slow');
|
|
$('#header').removeClass('header-fixed');
|
|
}
|
|
});
|
|
$('.back-to-top').click(function() {
|
|
$('html, body').animate({
|
|
scrollTop: 0
|
|
}, 1500, 'easeInOutExpo');
|
|
return false;
|
|
});
|
|
|
|
// Initiate the wowjs animation library
|
|
new WOW().init();
|
|
|
|
// Initiate superfish on nav menu
|
|
$('.nav-menu').superfish({
|
|
animation: {
|
|
opacity: 'show'
|
|
},
|
|
speed: 400
|
|
});
|
|
|
|
// Mobile Navigation
|
|
if ($('#nav-menu-container').length) {
|
|
var $mobile_nav = $('#nav-menu-container').clone().attr({
|
|
id: 'mobile-nav',
|
|
style:'display:none'
|
|
});
|
|
$mobile_nav.find('> ul').attr({
|
|
'class': '',
|
|
'id': ''
|
|
});
|
|
$('body').append($mobile_nav);
|
|
$('.navigation .header__contact-col').append('<button class="ml-3" type="button" id="mobile-nav-toggle"><i class="fa fa-bars"></i></button>');
|
|
$('body').prepend('<div id="mobile-body-overly"></div>');
|
|
$('<i class="fa fa-chevron-down"></i>').insertAfter('#mobile-nav .menu-has-children > a');
|
|
|
|
$(document).on('click', '.menu-has-children i', function(e) {
|
|
$(this).next().toggleClass('menu-item-active');
|
|
$(this).nextAll('ul').eq(0).slideToggle();
|
|
$(this).toggleClass("fa-chevron-up fa-chevron-down");
|
|
$(this).prev('a').toggleClass("expandable-active");
|
|
});
|
|
|
|
$(document).on('click', '#mobile-nav-toggle', function(e) {
|
|
$('#mobile-nav').slideToggle(600);
|
|
$('body').toggleClass('mobile-nav-active');
|
|
$('#mobile-nav-toggle i').toggleClass('fa-times fa-bars');
|
|
$('#mobile-body-overly').toggle();
|
|
});
|
|
|
|
$(document).click(function(e) {
|
|
var container = $("#mobile-nav, #mobile-nav-toggle");
|
|
if (!container.is(e.target) && container.has(e.target).length === 0) {
|
|
if ($('body').hasClass('mobile-nav-active')) {
|
|
$('body').removeClass('mobile-nav-active');
|
|
$('#mobile-nav-toggle i').toggleClass('fa-times fa-bars');
|
|
$('#mobile-body-overly').fadeOut();
|
|
}
|
|
}
|
|
});
|
|
} else if ($("#mobile-nav, #mobile-nav-toggle").length) {
|
|
$("#mobile-nav, #mobile-nav-toggle").hide();
|
|
}
|
|
|
|
// Smoth scroll on page hash links
|
|
$('.nav-menu a, #mobile-nav a, .scrollto').on('click', function() {
|
|
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
|
|
var target = $(this.hash);
|
|
if (target.length) {
|
|
var top_space = 0;
|
|
|
|
if ($('#header').length) {
|
|
top_space = $('#header').outerHeight();
|
|
|
|
if( ! $('#header').hasClass('header-fixed') ) {
|
|
top_space = top_space - 20;
|
|
}
|
|
}
|
|
|
|
$('html, body').animate({
|
|
scrollTop: target.offset().top - top_space
|
|
}, 1500, 'easeInOutExpo');
|
|
|
|
if ($(this).parents('.nav-menu').length) {
|
|
$('.nav-menu .menu-active').removeClass('menu-active');
|
|
$(this).closest('li').addClass('menu-active');
|
|
}
|
|
|
|
if ($('body').hasClass('mobile-nav-active')) {
|
|
$('body').removeClass('mobile-nav-active');
|
|
$('#mobile-nav-toggle i').toggleClass('fa-times fa-bars');
|
|
$('#mobile-body-overly').fadeOut();
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
|
|
// Gallery - uses the magnific popup jQuery plugin
|
|
$('.gallery-popup').magnificPopup({
|
|
type: 'image',
|
|
removalDelay: 300,
|
|
mainClass: 'mfp-fade',
|
|
gallery: {
|
|
enabled: true
|
|
},
|
|
zoom: {
|
|
enabled: true,
|
|
duration: 300,
|
|
easing: 'ease-in-out',
|
|
opener: function(openerElement) {
|
|
return openerElement.is('img') ? openerElement : openerElement.find('img');
|
|
}
|
|
}
|
|
});
|
|
|
|
// custom code
|
|
|
|
});
|