This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
2018-01-20 15:27:06 +01:00

21 lines
538 B
JavaScript

$(document).ready(function() {
new SYSTEM('./api.php',1,'start');
/* init Jarallax */
$('.jarallax').jarallax({
speed: 0.5,
imgWidth: 1366,
imgHeight: 768
});
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
$().UItoTop({ easingType: 'easeOutQuart' });
$('.navbar-nav>li>a').on('click', function(){
$('.navbar-collapse').collapse('hide');
});
});