Initial Checkin

This commit is contained in:
2025-03-07 12:16:27 -06:00
parent 7fdee0f17e
commit 41cb6c42c0
177 changed files with 12777 additions and 0 deletions

View File

@@ -0,0 +1,318 @@
/*!
=========================================================
* Paper Kit - v2.2.0
=========================================================
* Product Page: https://www.creative-tim.com/product/paper-kit
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
* Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
var transparent = true;
var big_image;
var transparentDemo = true;
var fixedTop = false;
var navbar_initialized,
backgroundOrange = false,
toggle_initialized = false;
$(document).ready(function() {
window_width = $(window).width();
var big_image;
// Activate the tooltips
if ($('[data-toggle="tooltip"]').length != 0) {
$('[data-toggle="tooltip"]').tooltip();
}
// Activate regular switches
if ($("[data-toggle='switch']").length != 0) {
$("[data-toggle='switch']").bootstrapSwitch();
}
// Append modals to <body>
if ($(".modal").length != 0) {
$('.modal').appendTo('body');
}
// Init noUiSlider
pk.initSliders();
// Init popovers
pk.initPopovers();
// Activate the image for the navbar-collapse
pk.initNavbarImage();
// Navbar color change on scroll
if ($('.navbar[color-on-scroll]').length != 0) {
$(window).on('scroll', pk.checkScrollForTransparentNavbar);
}
$('.navbar-collapse').click(function() {
setTimeout(function() {
if (pk.misc.navbar_menu_visible == 1) {
$('html').removeClass('nav-open');
pk.misc.navbar_menu_visible = 0;
$('#bodyClick').remove();
setTimeout(function() {
$toggle.removeClass('toggled');
}, 550);
}
}, 550);
});
// Change the collor of navbar collapse
$('#navbarToggler').on('show.bs.collapse', function() {
if ($('nav').hasClass('navbar-transparent') && $(document).scrollTop() < 50) {
$('.navbar').addClass('no-transition');
$('nav').removeClass('navbar-transparent');
}
}).on('hidden.bs.collapse', function() {
if ($(document).scrollTop() < 50) {
$('.navbar').removeClass('no-transition');
$('nav:first-of-type').addClass('navbar-transparent');
}
});
$navbar = $('.navbar[color-on-scroll]');
scroll_distance = $navbar.attr('color-on-scroll') || 500;
// Check if we have the class "navbar-color-on-scroll" then add the function to remove the class "navbar-transparent" so it will transform to a plain color.
if ($('.navbar[color-on-scroll]').length != 0) {
pk.checkScrollForTransparentNavbar();
$(window).on('scroll', pk.checkScroll)
}
$('.form-control').on("focus", function() {
$(this).parent('.input-group').addClass("input-group-focus");
}).on("blur", function() {
$(this).parent(".input-group").removeClass("input-group-focus");
});
if (window_width >= 768) {
big_image = $('.page-header[data-parallax="true"]');
if (big_image.length != 0) {
$(window).on('scroll', pk.checkScrollForPresentationPage);
}
}
// Activate Carousel
$('.carousel').carousel({
interval: 4000
});
});
$(document).on('click', '.navbar-toggler', function() {
$toggle = $(this);
if (pk.misc.navbar_menu_visible == 1) {
$('html').removeClass('nav-open');
pk.misc.navbar_menu_visible = 0;
$('#bodyClick').remove();
setTimeout(function() {
$toggle.removeClass('toggled');
}, 550);
} else {
setTimeout(function() {
$toggle.addClass('toggled');
}, 580);
div = '<div id="bodyClick"></div>';
$(div).appendTo('body').click(function() {
$('html').removeClass('nav-open');
pk.misc.navbar_menu_visible = 0;
setTimeout(function() {
$toggle.removeClass('toggled');
$('#bodyClick').remove();
}, 550);
});
$('html').addClass('nav-open');
pk.misc.navbar_menu_visible = 1;
}
});
pk = {
misc: {
navbar_menu_visible: 0
},
checkScrollForTransparentNavbar: debounce(function() {
if ($(document).scrollTop() > $(".navbar").attr("color-on-scroll")) {
if (transparent) {
transparent = false;
$('.navbar[color-on-scroll]').removeClass('navbar-transparent');
}
} else {
if (!transparent) {
transparent = true;
$('.navbar[color-on-scroll]').addClass('navbar-transparent');
}
}
}, 17),
initNavbarImage: function() {
var $navbar = $('.navbar').find('.navbar-translate').siblings('.navbar-collapse');
var background_image = $navbar.data('nav-image');
if ($(window).width() < 991 || $('body').hasClass('burger-menu')) {
if (background_image != undefined) {
$navbar.css('background', "url('" + background_image + "')")
.removeAttr('data-nav-image')
.css('background-size', "cover")
.addClass('has-image');
}
} else if (background_image != undefined) {
$navbar.css('background', "")
.attr('data-nav-image', '' + background_image + '')
.css('background-size', "")
.removeClass('has-image');
}
},
initPopovers: function() {
if ($('[data-toggle="popover"]').length != 0) {
$('body').append('<div class="popover-filter"></div>');
// Activate Popovers
$('[data-toggle="popover"]').popover().on('show.bs.popover', function() {
$('.popover-filter').click(function() {
$(this).removeClass('in');
$('[data-toggle="popover"]').popover('hide');
});
$('.popover-filter').addClass('in');
}).on('hide.bs.popover', function() {
$('.popover-filter').removeClass('in');
});
}
},
initSliders: function() {
// Sliders for demo purpose in refine cards section
if ($('#sliderRegular').length != 0) {
var rangeSlider = document.getElementById('sliderRegular');
noUiSlider.create(rangeSlider, {
start: [5000],
range: {
'min': [2000],
'max': [10000]
}
});
}
if ($('#sliderDouble').length != 0) {
var slider = document.getElementById('sliderDouble');
noUiSlider.create(slider, {
start: [20, 80],
connect: true,
range: {
'min': 0,
'max': 100
}
});
}
},
// Javascript for the parallax
checkScroll: debounce(function() {
big_image = $('.page-header[data-parallax="true"]');
oVal = ($(window).scrollTop() / 3);
big_image.css({
'transform': 'translate3d(0,' + oVal + 'px,0)',
'-webkit-transform': 'translate3d(0,' + oVal + 'px,0)',
'-ms-transform': 'translate3d(0,' + oVal + 'px,0)',
'-o-transform': 'translate3d(0,' + oVal + 'px,0)'
});
}, 4),
}
demo = {
initPickColor: function() {
$('.pick-class-label').click(function() {
var new_class = $(this).attr('new-class');
var old_class = $('#display-buttons').attr('data-class');
var display_div = $('#display-buttons');
if (display_div.length) {
var display_buttons = display_div.find('.btn');
display_buttons.removeClass(old_class);
display_buttons.addClass(new_class);
display_div.attr('data-class', new_class);
}
});
}
}
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this,
args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function() {
timeout = null;
if (!immediate) func.apply(context, args);
}, wait);
if (immediate && !timeout) func.apply(context, args);
};
};
function hasScrolled() {
var st = $(this).scrollTop();
// Make sure they scroll more than delta
if (Math.abs(lastScrollTop - st) <= delta)
return;
// If they scrolled down and are past the navbar, add class .nav-up.
// This is necessary so you never see what is "behind" the navbar.
if (st > lastScrollTop && st > navbarHeight) {
// Scroll Down
$('.navbar.nav-down').removeClass('nav-down').addClass('nav-up');
} else {
// Scroll Up
if (st + $(window).height() < $(document).height()) {
$('.navbar.nav-up').removeClass('nav-up').addClass('nav-down');
}
}
lastScrollTop = st;
};
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this,
args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function() {
timeout = null;
if (!immediate) func.apply(context, args);
}, wait);
if (immediate && !timeout) func.apply(context, args);
};
};