Add remaining project files (exclude ignored folders)
This commit is contained in:
Vendored
BIN
Binary file not shown.
Vendored
+10635
File diff suppressed because it is too large
Load Diff
Vendored
+7
File diff suppressed because one or more lines are too long
Vendored
+3925
File diff suppressed because it is too large
Load Diff
Vendored
+7
File diff suppressed because one or more lines are too long
@@ -0,0 +1,179 @@
|
||||
/*---------------------------------------------------------------------
|
||||
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; } ;
|
||||
|
||||
/* Toggle sidebar
|
||||
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||||
function openNav() {
|
||||
document.getElementById("mySidepanel").style.width = "250px";
|
||||
}
|
||||
|
||||
function closeNav() {
|
||||
document.getElementById("mySidepanel").style.width = "0";
|
||||
}
|
||||
|
||||
|
||||
/* Animate js*/
|
||||
|
||||
(function($) {
|
||||
//Function to animate slider captions
|
||||
function doAnimations(elems) {
|
||||
//Cache the animationend event in a variable
|
||||
var animEndEv = "webkitAnimationEnd animationend";
|
||||
|
||||
elems.each(function() {
|
||||
var $this = $(this),
|
||||
$animationType = $this.data("animation");
|
||||
$this.addClass($animationType).one(animEndEv, function() {
|
||||
$this.removeClass($animationType);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
//Variables on page load
|
||||
var $myCarousel = $("#carouselExampleIndicators"),
|
||||
$firstAnimatingElems = $myCarousel
|
||||
.find(".carousel-item:first")
|
||||
.find("[data-animation ^= 'animated']");
|
||||
|
||||
//Initialize carousel
|
||||
$myCarousel.carousel();
|
||||
|
||||
//Animate captions in first slide on page load
|
||||
doAnimations($firstAnimatingElems);
|
||||
|
||||
//Other slides to be animated on carousel slide event
|
||||
$myCarousel.on("slide.bs.carousel", function(e) {
|
||||
var $animatingElems = $(e.relatedTarget).find(
|
||||
"[data-animation ^= 'animated']"
|
||||
);
|
||||
doAnimations($animatingElems);
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
/* Toggle sidebar
|
||||
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
|
||||
function openNav() {
|
||||
document.getElementById("mySidepanel").style.width = "250px";
|
||||
}
|
||||
|
||||
function closeNav() {
|
||||
document.getElementById("mySidepanel").style.width = "0";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// owl-carousel
|
||||
$('.owl-carousel').owlCarousel({
|
||||
loop: true,
|
||||
margin: 15,
|
||||
nav: true,
|
||||
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1
|
||||
},
|
||||
600: {
|
||||
items: 3
|
||||
},
|
||||
1000: {
|
||||
items: 3
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
||||
// menu js
|
||||
|
||||
// define all UI variable
|
||||
const navToggler = document.querySelector('.nav-toggler');
|
||||
const navMenu = document.querySelector('.site-navbar ul');
|
||||
const navLinks = document.querySelectorAll('.site-navbar a');
|
||||
|
||||
// load all event listners
|
||||
allEventListners();
|
||||
|
||||
// functions of all event listners
|
||||
function allEventListners() {
|
||||
// toggler icon click event
|
||||
navToggler.addEventListener('click', togglerClick);
|
||||
// nav links click event
|
||||
navLinks.forEach( elem => elem.addEventListener('click', navLinkClick));
|
||||
}
|
||||
|
||||
// togglerClick function
|
||||
function togglerClick() {
|
||||
navToggler.classList.toggle('toggler-open');
|
||||
navMenu.classList.toggle('open');
|
||||
}
|
||||
|
||||
// navLinkClick function
|
||||
function navLinkClick() {
|
||||
if(navMenu.classList.contains('open')) {
|
||||
navToggler.click();
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Vendored
+5
File diff suppressed because one or more lines are too long
Vendored
+1601
File diff suppressed because it is too large
Load Diff
Vendored
+7
File diff suppressed because one or more lines are too long
@@ -0,0 +1,105 @@
|
||||
/*---------------------------------------------------------------------
|
||||
File Name: slider-setting.js
|
||||
---------------------------------------------------------------------*/
|
||||
|
||||
"use strict";
|
||||
var tpj = jQuery;
|
||||
|
||||
var revapi486;
|
||||
tpj(document).ready(function () {
|
||||
if (tpj("#rev_slider_486_1").revolution == undefined) {
|
||||
revslider_showDoubleJqueryError("#rev_slider_486_1");
|
||||
} else {
|
||||
revapi486 = tpj("#rev_slider_486_1").show().revolution({
|
||||
sliderType: "standard",
|
||||
jsFileLocation: "revolution/js/",
|
||||
sliderLayout: "fullscreen",
|
||||
dottedOverlay: "none",
|
||||
delay: 5000,
|
||||
navigation: {
|
||||
keyboardNavigation: "on",
|
||||
keyboard_direction: "horizontal",
|
||||
mouseScrollNavigation: "off",
|
||||
mouseScrollReverse: "default",
|
||||
onHoverStop: "on",
|
||||
touch: {
|
||||
touchenabled: "on",
|
||||
swipe_threshold: 75,
|
||||
swipe_min_touches: 1,
|
||||
swipe_direction: "horizontal",
|
||||
drag_block_vertical: false
|
||||
},
|
||||
arrows: {
|
||||
style: "gyges",
|
||||
enable: true,
|
||||
hide_onmobile: false,
|
||||
hide_onleave: true,
|
||||
hide_delay: 200,
|
||||
hide_delay_mobile: 1200,
|
||||
tmp: '',
|
||||
left: {
|
||||
h_align: "left",
|
||||
v_align: "center",
|
||||
h_offset: 0,
|
||||
v_offset: 0
|
||||
},
|
||||
right: {
|
||||
h_align: "right",
|
||||
v_align: "center",
|
||||
h_offset: 0,
|
||||
v_offset: 0
|
||||
}
|
||||
},
|
||||
bullets: {
|
||||
enable: true,
|
||||
hide_onmobile: true,
|
||||
hide_under: 800,
|
||||
style: "hebe",
|
||||
hide_onleave: false,
|
||||
direction: "horizontal",
|
||||
h_align: "center",
|
||||
v_align: "bottom",
|
||||
h_offset: 0,
|
||||
v_offset: 30,
|
||||
space: 5,
|
||||
tmp: '<span class="tp-bullet-image"></span><span class="tp-bullet-imageoverlay"></span><span class="tp-bullet-title"></span>'
|
||||
}
|
||||
},
|
||||
viewPort: {
|
||||
enable: true,
|
||||
outof: "pause",
|
||||
visible_area: "70%",
|
||||
presize: false
|
||||
},
|
||||
responsiveLevels: [1240, 1024, 778, 480],
|
||||
visibilityLevels: [1240, 1024, 778, 480],
|
||||
gridwidth: [1240, 1024, 778, 480],
|
||||
gridheight: [500, 450, 400, 350],
|
||||
lazyType: "none",
|
||||
parallax: {
|
||||
type: "scroll",
|
||||
origo: "enterpoint",
|
||||
speed: 400,
|
||||
levels: [5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 46, 47, 48, 49, 50, 55],
|
||||
type: "scroll",
|
||||
},
|
||||
shadow: 0,
|
||||
spinner: "off",
|
||||
stopLoop: "off",
|
||||
stopAfterLoops: -1,
|
||||
stopAtSlide: -1,
|
||||
shuffle: "off",
|
||||
autoHeight: "off",
|
||||
hideThumbsOnMobile: "off",
|
||||
hideSliderAtLimit: 0,
|
||||
hideCaptionAtLimit: 0,
|
||||
hideAllCaptionAtLilmit: 0,
|
||||
debugMode: false,
|
||||
fallbacks: {
|
||||
simplifyAll: "off",
|
||||
nextSlideOnWindowFocus: "off",
|
||||
disableFocusListener: false,
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user