jQuery(document).ready(function($){ /*------------------------------------------------ DECLARATIONS ------------------------------------------------*/ var loader = $('#loader'); var loader_container = $('#preloader'); var scroll = $(window).scrollTop(); var scrollup = $('.backtotop'); var dropdown_toggle = $('.main-navigation button.dropdown-toggle'); var menu_toggle = $('.menu-toggle'); var primary_menu = $('#masthead .menu'); var filtering = $('.filtering-posts'); /*------------------------------------------------ PRELOADER ------------------------------------------------*/ $('#loader').fadeOut(); $('#loader-container').fadeOut(); /*------------------------------------------------ END PRELOADER ------------------------------------------------*/ /*------------------------------------------------ NAVIGATION ------------------------------------------------*/ menu_toggle.click(function() { primary_menu.slideToggle(); $(this).toggleClass('active'); $('#masthead .main-navigation').toggleClass('toggled-on '); $('.menu-overlay').toggleClass('active'); }); dropdown_toggle.click(function() { $(this).toggleClass('active'); $(this).parent().find('.sub-menu').first().slideToggle(); }); $('.main-navigation ul li.search-menu a').click(function(e) { e.preventDefault(); $(this).toggleClass('search-active'); $('.main-navigation #search').fadeToggle(); $('.main-navigation .search-field').focus(); }); if ($(window).width() < 1024) { $( ".nav-menu ul.sub-menu li:last-child" ).focusout(function() { dropdown_toggle.removeClass('active'); $('.main-navigation .sub-menu').slideUp(); }); } /*------------------------------------------------ STICKY HEADER ------------------------------------------------*/ $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll > 150) { $(".site-header.sticky-header").addClass("nav-shrink"); } else { $(".site-header.sticky-header").removeClass("nav-shrink"); } }); /*-------------------------------------------------------------- Keyboard Navigation ----------------------------------------------------------------*/ if( $(window).width() < 1024 ) { $('#primary-menu').find("li").last().bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#primary-menu > li:last-child button:not(.active)').bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#search').find("button").unbind('keydown'); } else { $('#primary-menu').find("li").unbind('keydown'); $('#search').find("button").bind( 'keydown', function(e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( tabKey ) { e.preventDefault(); $('#search').hide(); $('.search-menu > a').removeClass('search-active').focus(); } if( shiftKey && tabKey ) { e.preventDefault(); $('#search').show(); $('.main-navigation .search-field').focus(); $('.search-menu > a').addClass('search-active'); } }); $('.search-menu > a').on('keydown', function (e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( $('.search-menu > a').hasClass('search-active') ) { if ( shiftKey && tabKey ) { e.preventDefault(); $('#search').hide(); $('.search-menu > a').removeClass('search-active').focus(); } } }); } $(window).resize(function() { if( $(window).width() < 1024 ) { $('#primary-menu').find("li").last().bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#primary-menu > li:last-child button:not(.active)').bind( 'keydown', function(e) { if( e.which === 9 ) { e.preventDefault(); $('#masthead').find('.menu-toggle').focus(); } }); $('#search').find("button").unbind('keydown'); } else { $('#primary-menu').find("li").unbind('keydown'); $('#search').find("button").bind( 'keydown', function(e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( tabKey ) { e.preventDefault(); $('#search').hide(); $('.search-menu > a').removeClass('search-active').focus(); } if( shiftKey && tabKey ) { e.preventDefault(); $('#search').show(); $('.main-navigation .search-field').focus(); $('.search-menu > a').addClass('search-active'); } }); $('.search-menu > a').on('keydown', function (e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( $('.search-menu > a').hasClass('search-active') ) { if ( shiftKey && tabKey ) { e.preventDefault(); $('#search').hide(); $('.search-menu > a').removeClass('search-active').focus(); } } }); } }); menu_toggle.on('keydown', function (e) { var tabKey = e.keyCode === 9; var shiftKey = e.shiftKey; if( menu_toggle.hasClass('active') ) { if ( shiftKey && tabKey ) { e.preventDefault(); primary_menu.slideUp(); $('.main-navigation').removeClass('toggled-on '); $('.menu-overlay').removeClass('active'); menu_toggle.removeClass('active'); }; } }); /*------------------------------------------------ END STICKY HEADER ------------------------------------------------*/ /*------------------------------------------------ BACK TO TOP ------------------------------------------------*/ $(window).scroll(function(){ if ($(this).scrollTop() > 1) { $('.backtotop').fadeIn(); } else { $('.backtotop').fadeOut(); } }); $('.backtotop').click(function(){ $('html, body').animate({scrollTop: '0px'}, 800); return false; }); /*------------------------------------------------ END BACK TO TOP ------------------------------------------------*/ /*------------------------------------------------ SLICK SLIDER ------------------------------------------------*/ $('.main-slider .regular').slick( { cssEase: $('.main-slider .regular').data('effect') } ); $(".tab-slider").slick(); $(".widget_travel_steps .regular").slick(); $(".about-slider").slick({ responsive: [ { breakpoint: 480, settings: { slidesToShow: 1 } } ] }); $(".gallery-widget .regular").slick(); $(".tour-slider").slick({ responsive: [ { breakpoint: 992, settings: { slidesToShow: 4 } }, { breakpoint: 800, settings: { slidesToShow: 3 } }, { breakpoint: 600, settings: { slidesToShow: 2 } }, { breakpoint: 421, settings: { slidesToShow: 1 } } ] }); $(".travel-slider").slick({ fade: true, cssEase: 'linear', customPaging : function(slider, i) { var thumb = $(slider.$slides[i]).data('thumb'); var title = $(slider.$slides[i]).data('title'); var price = $(slider.$slides[i]).data('price'); return '
'+price+'

'+title+'

'; } }); /*------------------------------------------------ PACKERY ------------------------------------------------*/ $('.grid').packery({ itemSelector: '.grid-item', gutter: 20 }); /*------------------------------------------------ MAGNIFIC POPUP ------------------------------------------------*/ $('.gallery-popup').magnificPopup( { delegate:'.popup', type:'image', tLoading:'Loading image #%curr%...', mainClass:'mfp-img-mobile', gallery: { enabled: true, navigateByImgClick: true, preload: [0, 1] } , image: { tError:'The image #%curr% could not be loaded.', titleSrc:function(item) { return item.el.attr('title'); } } }); /*------------------------------------------------ Counter ------------------------------------------------*/ function count($this){ var current = parseInt($this.html(), 10); current = current + 1; /* Where 50 is increment */ $this.html(++current); if(current > $this.data('count')){ $this.html($this.data('count')); } else { setTimeout(function(){count($this)}, 10); } } $(".stat-count").each(function() { $(this).data('count', parseInt($(this).html(), 10)); $(this).html('0'); count($(this)); }); /*------------------------------------------------ TABS ------------------------------------------------*/ $(".nav-tabs li a").click(function(event) { event.preventDefault(); $(this).parent().addClass("active"); $(this).parent().siblings().removeClass("active"); var tab = $(this).attr("href"); $(".tab-pane").not(tab).css("display", "none"); $(tab).fadeIn(); $('.tab-slider').slick('setPosition'); }); /*------------------------------------------------ PARALLAX ------------------------------------------------*/ $.stellar({ horizontalScrolling: false, verticalOffset: 3000 }); /*----------------------------------------------------- MAP OVERLAY -------------------------------------------------------*/ $('.map').mouseleave(function(){ $('.map-overlay').css('display','block'); }); $('.map').click(function(){ $('.map-overlay').css('display','none'); }); /*------------------------------------------------ SINGLE BLOG ------------------------------------------------*/ if($('.single-post .hentry .entry-content p img').hasClass('size-medium')) { $('.single-post #primary header.entry-header').css({ 'max-width': '370px' }); } /*------------------------------------------------ END JQUERY ------------------------------------------------*/ });