jQuery(document).ready(function() {
var slider_loop = jQuery('#top-slider').attr('slider-loop');
var owl = jQuery('#top-slider .owl-carousel');
owl.owlCarousel({
margin: 0,
nav:false,
autoplay : true,
lazyLoad: true,
autoplayTimeout: 5000,
loop: slider_loop == 0 ? false : slider_loop,
dots: false,
navText : ['',''],
responsive: {
0: {
items: 1
},
576: {
items: 1
},
768: {
items: 1
},
1000: {
items: 1
},
1200: {
items: 1
}
},
autoplayHoverPause : false,
mouseDrag: true
});
jQuery(document).ready(function($){
function author_book_publisher_initOwl(){
$('.owl-carousel').each(function(){
$(this).owlCarousel({
items: 3,
loop: false,
margin: 15,
nav: false,
dots: false,
autoplay: false
});
});
}
// Initialize on page load
author_book_publisher_initOwl();
// On Bootstrap Tab Change
$('a[data-bs-toggle="tab"]').on('shown.bs.tab', function (e) {
// Destroy existing owl inside all tab panes
$('.owl-carousel').each(function(){
if ($(this).hasClass('owl-loaded')) {
$(this).trigger('destroy.owl.carousel');
$(this).removeClass('owl-loaded');
$(this).find('.owl-stage-outer').children().unwrap();
}
});
// Reinitialize owl inside active tab only
var target = $(e.target).attr("href"); // Active tab ID
$(target).find('.owl-carousel').each(function(){
$(this).owlCarousel({
items: 3,
loop: false,
margin: 15,
nav: true,
dots: false,
autoplay: false
});
});
});
});
var owl = jQuery('.featured .owl-carousel');
owl.owlCarousel({
margin: 30,
nav:false,
autoplay : true,
lazyLoad: true,
autoplayTimeout: 5000,
loop: true,
dots: false,
navText : ['',''],
responsive: {
0: {
items: 1
},
576: {
items: 1
},
768: {
items: 2
},
1000: {
items: 3
},
1200: {
items: 3
}
},
autoplayHoverPause : false,
mouseDrag: true,
});
window.addEventListener('load', (event) => {
jQuery(".loading").delay(1000).fadeOut("slow");
jQuery(".loading2").delay(2000).fadeOut("slow");
});
})
jQuery(document).ready(function ($) {
// Menu Js
$('.submenu-toggle').click(function () {
$(this).toggleClass('button-toggle-active');
var currentClass = $(this).attr('data-toggle-target');
$(currentClass).toggleClass('submenu-toggle-active');
});
$('.skip-link-menu-start').focus(function () {
if (!$("#offcanvas-menu #primary-nav-offcanvas").length == 0) {
$("#offcanvas-menu #primary-nav-offcanvas ul li:last-child a").focus();
}
});
// Menu Toggle Js
$('.navbar-control-offcanvas').click(function () {
$(this).addClass('active');
$('body').addClass('body-scroll-locked');
$('#offcanvas-menu').toggleClass('offcanvas-menu-active');
$('.button-offcanvas-close').focus();
});
$('.offcanvas-close .button-offcanvas-close').click(function () {
$('#offcanvas-menu').removeClass('offcanvas-menu-active');
$('.navbar-control-offcanvas').removeClass('active');
$('body').removeClass('body-scroll-locked');
setTimeout(function () {
$('.navbar-control-offcanvas').focus();
}, 300);
});
$('#offcanvas-menu').click(function () {
$('#offcanvas-menu').removeClass('offcanvas-menu-active');
$('.navbar-control-offcanvas').removeClass('active');
$('body').removeClass('body-scroll-locked');
});
$(".offcanvas-wraper").click(function (e) {
e.stopPropagation(); //stops click event from reaching document
});
$('.skip-link-menu-end').on('focus', function () {
$('.button-offcanvas-close').focus();
});
});
jQuery(document).ready(function(){
jQuery('.search-box span a').click(function(){
jQuery(".serach_outer").toggle();
});
});
var btn = jQuery('#button');
jQuery(window).scroll(function() {
if (jQuery(window).scrollTop() > 300) {
btn.addClass('show');
} else {
btn.removeClass('show');
}
});
btn.on('click', function(e) {
e.preventDefault();
jQuery('html, body').animate({scrollTop:0}, '300');
});
jQuery(window).scroll(function() {
var data_sticky = jQuery('.main_header').attr('data-sticky');
if (data_sticky == "true") {
if (jQuery(this).scrollTop() > 1){
jQuery('.main_header').addClass("stick_header");
} else {
jQuery('.main_header').removeClass("stick_header");
}
}
});
jQuery(document).keyup(function(e) {
if (e.key === "Escape") {
if (jQuery('#offcanvas-menu').hasClass("offcanvas-menu-active")) {
jQuery('#offcanvas-menu').removeClass("offcanvas-menu-active")
}
}
});