| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_projetos/sopizzas/assets/js/front-end/ |
Upload File : |
$(document).ready(function(){
//------------------------------------//
//Navbar//
//------------------------------------//
var menu = $('.navbar');
$(window).bind('scroll', function(e){
if($(window).scrollTop() > 140){
if(!menu.hasClass('open')){
menu.addClass('open');
}
}else{
if(menu.hasClass('open')){
menu.removeClass('open');
}
}
});
//------------------------------------//
//Scroll To//
//------------------------------------//
$(".scroll.myScroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top-100}, 800);
});
//------------------------------------//
//Wow Animation//
//------------------------------------//
wow = new WOW(
{
boxClass: 'wow', // animated element css class (default is wow)
animateClass: 'animated', // animation css class (default is animated)
offset: 0, // distance to the element when triggering the animation (default is 0)
mobile: false // trigger animations on mobile devices (true is default)
}
);
wow.init();
});