- tmdb-helper-files included

- new design
This commit is contained in:
DWH-WFC
2022-05-05 19:35:22 +02:00
parent 3ebbdabc36
commit 3bcf03ef26
25 changed files with 591 additions and 1 deletions

22
js/functions.js Normal file
View File

@@ -0,0 +1,22 @@
$( document ).ready(function() {
// PRELOADER
setTimeout(function(){
$('body').addClass('loaded');
}, 3000);
// SCROLL REVEAL
window.sr = new scrollReveal();
// SMOOTH SCROLL
smoothScroll.init({
speed: 900, // Integer. How fast to complete the scroll in milliseconds
easing: 'easeInOutCubic', // Easing pattern to use
updateURL: true, // Boolean. Whether or not to update the URL with the anchor hash on scroll
offset: 0, // Integer. How far to offset the scrolling anchor location in pixels
callbackBefore: function ( toggle, anchor ) {}, // Function to run before scrolling
callbackAfter: function ( toggle, anchor ) {} // Function to run after scrolling
});
});