jQuery(function($){
"use strict";
jQuery('.main-menu-navigation > ul').superfish({
delay: 0,
animation: {opacity:'show',height:'show'},
speed: 'fast'
});
});
(function( $ ) {
jQuery(document).ready(function() {
var owl = jQuery('#category .owl-carousel');
owl.owlCarousel({
nav: true,
autoplay:true,
autoplayTimeout:2000,
autoplayHoverPause:true,
loop: true,
navText : ['',''],
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 1
}
}
})
})
})( jQuery );
// scroll
jQuery(document).ready(function () {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 0) {
jQuery('#scroll-top').fadeIn();
} else {
jQuery('#scroll-top').fadeOut();
}
});
jQuery(window).on("scroll", function () {
document.getElementById("scroll-top").style.display = "block";
});
jQuery('#scroll-top').click(function () {
jQuery("html, body").animate({
scrollTop: 0
}, 600);
return false;
});
advance_automobile_MobileMenuInit();
advance_automobile_search_focus();
});
(function( $ ) {
$(window).scroll(function(){
var sticky = $('.sticky-header'),
scroll = $(window).scrollTop();
if (scroll >= 100) sticky.addClass('fixed-header');
else sticky.removeClass('fixed-header');
});
})( jQuery );
// preloader
jQuery(function($){
setTimeout(function(){
$("#loader-wrapper").delay(1000).fadeOut("slow");
});
});
function advance_automobile_MobileMenuInit() {
/* First and last elements in the menu */
var advance_automobile_firstTab = jQuery('.main-menu-navigation ul:first li:first a');
var advance_automobile_lastTab = jQuery('a.closebtn'); /* Cancel button will always be last */
jQuery(".mobiletoggle").click(function(e){
e.preventDefault();
e.stopPropagation();
jQuery('body').addClass("noscroll");
advance_automobile_firstTab.focus();
});
jQuery("a.closebtn").click(function(e){
e.preventDefault();
e.stopPropagation();
jQuery('body').removeClass("noscroll");
jQuery(".mobiletoggle").focus();
});
/* Redirect last tab to first input */
advance_automobile_lastTab.on('keydown', function (e) {
if (jQuery('body').hasClass('noscroll'))
if ((e.which === 9 && !e.shiftKey)) {
e.preventDefault();
advance_automobile_firstTab.focus();
}
});
/* Redirect first shift+tab to last input*/
advance_automobile_firstTab.on('keydown', function (e) {
if (jQuery('body').hasClass('noscroll'))
if ((e.which === 9 && e.shiftKey)) {
e.preventDefault();
advance_automobile_lastTab.focus();
}
});
/* Allow escape key to close menu */
jQuery('.sidebar').on('keyup', function(e){
if (jQuery('body').hasClass('noscroll'))
if (e.keyCode === 27 ) {
jQuery('body').removeClass('noscroll');
advance_automobile_lastTab.focus();
};
});
}
function advance_automobile_search_focus() {
/* First and last elements in the menu */
var advance_automobile_search_firstTab = jQuery('.serach_inner input[type="search"]');
var advance_automobile_search_lastTab = jQuery('button.search-close'); /* Cancel button will always be last */
jQuery(".search-open").click(function(e){
e.preventDefault();
e.stopPropagation();
jQuery('body').addClass("search-focus");
advance_automobile_search_firstTab.focus();
});
jQuery("button.search-close").click(function(e){
e.preventDefault();
e.stopPropagation();
jQuery('body').removeClass("search-focus");
jQuery(".search-open").focus();
});
/* Redirect last tab to first input */
advance_automobile_search_lastTab.on('keydown', function (e) {
if (jQuery('body').hasClass('search-focus'))
if ((e.which === 9 && !e.shiftKey)) {
e.preventDefault();
advance_automobile_search_firstTab.focus();
}
});
/* Redirect first shift+tab to last input*/
advance_automobile_search_firstTab.on('keydown', function (e) {
if (jQuery('body').hasClass('search-focus'))
if ((e.which === 9 && e.shiftKey)) {
e.preventDefault();
advance_automobile_search_lastTab.focus();
}
});
/* Allow escape key to close menu */
jQuery('.serach_inner').on('keyup', function(e){
if (jQuery('body').hasClass('search-focus'))
if (e.keyCode === 27 ) {
jQuery('body').removeClass('search-focus');
advance_automobile_search_lastTab.focus();
};
});
}