/* -----------------------------------------
Table of Contents
--------------------------------------------
.. 01. Responsive Navigation Menu
.. 02. Tabs
.. 03. Back to Top Button
.. 04. Header Search
.. 05. Featured Slider
*/
(function ($, window) {
"use strict";
// 01. Responsive Navigation Menu
//--------------------------------------------//
function bloomy_responsive_menu() {
$(".st-menu ul li").has('ul').prepend("");
$('.st-menu ul li .side-sub-menu').click(function() {
$(this).next().next().slideToggle(300);
if ($(this).children().hasClass('fa-angle-down')) {
$(this).children().removeClass('fa-angle-down').addClass('fa-angle-up');
} else {
$(this).children().removeClass('fa-angle-up').addClass('fa-angle-down');
}
});
$(document).ready(function( $ ) {
$(".menu-btn").click(function(e){
e.preventDefault();
e.stopPropagation();
$("html").toggleClass("openNav");
});
}).on( 'click', function ( e ) {
var mouseclick = $(e.target);
console.log(mouseclick);
if ( mouseclick.hasClass('st-menu') || mouseclick.parent().hasClass('st-menu') || mouseclick.parent().hasClass('side-sub-menu') ) {
return;
}
else {
$('html').removeClass("openNav");
}
} );
};
// 02. Tabs
//--------------------------------------------//
function bloomy_tabs() {
"use strict";
$(".tabs li").on("click", function(){
$(".tabs li").removeClass('active');
$(this).addClass("active");
$(".tab-content").hide();
var selected_tab = $(this).find("a").attr("href");
$(selected_tab).fadeIn();
return false;
});
};
// 03. Back to Top Button
//--------------------------------------------//
function bloomy_scroll_top() {
var offset = 220;
var duration = 500;
$(window).scroll(function() {
if ($(this).scrollTop() > offset) {
$('.back-to-top').fadeIn(duration);
} else {
$('.back-to-top').fadeOut(duration);
}
});
$('.back-to-top').on("click", function(event){
event.preventDefault();
$('html,body').animate({scrollTop: 0}, duration);
return false;
})
};
// 04. Header Search
//--------------------------------------------//
function bloomy_header_search() {
$(".header-search .search-submit").click(function(){
$(".header-search .s:visible").length ? $(".header-search .s").hide() : $(".header-search .s").show();
})
};
// 05. Featured Slider
//--------------------------------------------//
function bloomy_featured_slider() {
$(".featuredslider").owlCarousel({
autoplay: true,
autoHeight: true,
loop: true,
items:1,
nav: true,
navText: ['',''],
dots: false,
responsiveClass:true,
responsive:{
0:{
items:1,
},
479:{
items:1,
},
768:{
items:1,
},
1065:{
items:1,
}
},
onInitialize : function(){
$('.featured-section').removeClass('loading');
},
});
};
function bloomy_scripts() {
bloomy_responsive_menu();
bloomy_tabs();
bloomy_scroll_top();
bloomy_header_search();
bloomy_featured_slider();
}
$(document).ready(bloomy_scripts);
})(jQuery, window);