Test version

This commit is contained in:
Jorit Tijsen
2024-03-05 17:22:55 +01:00
parent 8acacc0c68
commit 55aa88c0f6
128 changed files with 46700 additions and 9645 deletions

2
public/js/jquery-3.7.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,85 +1,85 @@
/*
jQuery(document).ready(function() {
// for hover dropdown menu
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(200);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(200);
});
// slick slider call
$('.slick_slider').slick({
dots: true,
infinite: true,
speed: 800,
slidesToShow: 1,
slide: 'div',
autoplay: true,
autoplaySpeed: 5000,
cssEase: 'linear'
});
// latest post slider call
$('.latest_postnav').newsTicker({
row_height: 64,
speed: 800,
prevButton: $('#prev-button'),
nextButton: $('#next-button')
});
jQuery(".fancybox-buttons").fancybox({
prevEffect: 'none',
nextEffect: 'none',
closeBtn: true,
helpers: {
title: {
type: 'inside'
},
buttons: {}
}
});
// jQuery('a.gallery').colorbox();
//Check to see if the window is top if not then display button
$(window).scroll(function() {
if ($(this).scrollTop() > 300) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function() {
$('html, body').animate({
scrollTop: 0
}, 800);
return false;
});
$('.tootlip').tooltip();
$("ul#ticker01").liScroll();
});
*/
wow = new WOW({
animateClass: 'animated',
offset: 100
});
wow.init();
jQuery(window).load(function() { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(100).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(100).css({
'overflow': 'visible'
});
});
function resizeNav() {
var $nav = $("nav");
$nav.data('offsetTop', $nav.offset().top);
$nav.width("100%");
$nav.width($("#navArea").width());
}
jQuery(window).resize(function() {
resizeNav();
});
resizeNav();
/*
jQuery(document).ready(function() {
// for hover dropdown menu
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeIn(200);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(200).fadeOut(200);
});
// slick slider call
$('.slick_slider').slick({
dots: true,
infinite: true,
speed: 800,
slidesToShow: 1,
slide: 'div',
autoplay: true,
autoplaySpeed: 5000,
cssEase: 'linear'
});
// latest post slider call
$('.latest_postnav').newsTicker({
row_height: 64,
speed: 800,
prevButton: $('#prev-button'),
nextButton: $('#next-button')
});
jQuery(".fancybox-buttons").fancybox({
prevEffect: 'none',
nextEffect: 'none',
closeBtn: true,
helpers: {
title: {
type: 'inside'
},
buttons: {}
}
});
// jQuery('a.gallery').colorbox();
//Check to see if the window is top if not then display button
$(window).scroll(function() {
if ($(this).scrollTop() > 300) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function() {
$('html, body').animate({
scrollTop: 0
}, 800);
return false;
});
$('.tootlip').tooltip();
$("ul#ticker01").liScroll();
});
*/
wow = new WOW({
animateClass: 'animated',
offset: 100
});
wow.init();
jQuery(window).load(function() { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(100).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(100).css({
'overflow': 'visible'
});
});
function resizeNav() {
var $nav = $("nav");
$nav.data('offsetTop', $nav.offset().top);
$nav.width("100%");
$nav.width($("#navArea").width());
}
jQuery(window).resize(function() {
resizeNav();
});
resizeNav();

File diff suppressed because one or more lines are too long