HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/sportpoint-hotel.ru/public_html/wp-content/themes/hotelone/js/page-scroll.js
/* Page Scroll JS
----------------------------------------------------------------*/
jQuery(document).ready(function ($) {
	
	$(window).scroll(function () {
		if ($(this).scrollTop() > 100) {
			$('.bottomScrollBtn').fadeIn();
		} else {
			$('.bottomScrollBtn').fadeOut();
		}
	});
	
	if($('.nav_sticky').length > 0 ){
		var stickyOffset = $('.nav_sticky').offset().top;
		var navH = $('.nav_sticky').outerHeight();
		$(window).scroll(function () {
			if ($(window).scrollTop() >= stickyOffset){
				$('.nav_sticky').addClass('fixed animated fadeInDown');
				$('.nav-spacer').addClass('animated fadeInUp').attr('hieght', navH + 'px'); 
			}else {
				$('.nav_sticky').removeClass('fixed animated fadeInDown');
				$('.nav-spacer').addClass('animated fadeInUp').attr('hieght','0px');
			}
		});
	}
	

	$('.bottomScrollBtn').click(function () {
		$("html, body").animate({
			scrollTop: 0
		}, 600);
		return false;
	});
	
	if( hotelone_settings.is_frontpage == true ){
		$('.header_scroll_logo .custom-logo-link, .site-title').click(function () {
			$("html, body").animate({
				scrollTop: 0
			}, 600);
			return false;
		});
	}
	
	/* Bootstrap Tool Tip
	---------------------*/
	$( '[data-toggle="tooltip"], [rel="tooltip"]' ).tooltip();
});