File: /home/dkfounda/public_html/wp-content/themes/classic-charity-ngo/js/theme.js
// preloader
jQuery(window).on('load', function() {
jQuery('#status').fadeOut();
jQuery('#preloader').delay(350).fadeOut('slow');
jQuery('body').delay(350).css({'overflow':'visible'});
})
// sticky header
jQuery(window).scroll(function(){
if (jQuery(window).scrollTop() >= 100) {
jQuery('.is-sticky-on').addClass('sticky-head');
}
else {
jQuery('.is-sticky-on').removeClass('sticky-head');
}
});
// toggle button
jQuery(function($){
$( '.toggle-nav button' ).click( function(e){
$( 'body' ).toggleClass( 'show-main-menu' );
var element = $( '.sidenav' );
classic_charity_ngo_trapFocus( element );
});
$( '.close-button' ).click( function(e){
$( '.toggle-nav button' ).click();
$( '.toggle-nav button' ).focus();
});
$( document ).on( 'keyup',function(evt) {
if ( $( 'body' ).hasClass( 'show-main-menu' ) && evt.keyCode == 27 ) {
$( '.toggle-nav button' ).click();
$( '.toggle-nav button' ).focus();
}
});
});
function classic_charity_ngo_trapFocus( element, namespace ) {
var classic_charity_ngo_focusableEls = element.find( 'a, button' );
var classic_charity_ngo_firstFocusableEl = classic_charity_ngo_focusableEls[0];
var classic_charity_ngo_lastFocusableEl = classic_charity_ngo_focusableEls[classic_charity_ngo_focusableEls.length - 1];
var KEYCODE_TAB = 9;
classic_charity_ngo_firstFocusableEl.focus();
element.keydown( function(e) {
var isTabPressed = ( e.key === 'Tab' || e.keyCode === KEYCODE_TAB );
if ( !isTabPressed ) {
return;
}
if ( e.shiftKey ) /* shift + tab */ {
if ( document.activeElement === classic_charity_ngo_firstFocusableEl ) {
classic_charity_ngo_lastFocusableEl.focus();
e.preventDefault();
}
} else /* tab */ {
if ( document.activeElement === classic_charity_ngo_lastFocusableEl ) {
classic_charity_ngo_firstFocusableEl.focus();
e.preventDefault();
}
}
});
}
// slider owl
jQuery(document).ready(function() {
jQuery('#slider-cat .owl-carousel').owlCarousel({
loop: true,
margin: 0,
nav:false,
dots:true,
rtl:false,
items: 1,
autoplay:true,
})
});
// scroll to top
jQuery(document).ready(function () {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 0) {
jQuery('#button').fadeIn();
} else {
jQuery('#button').fadeOut();
}
});
jQuery('#button').click(function () {
jQuery("html, body").animate({
scrollTop: 0
}, 600);
return false;
});
});