21 lines
538 B
JavaScript
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');
|
|
});
|
|
}); |