HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/www/wp-content/themes/transportation-agency-pro/assets/js/custom.js
// ------------ Scroll Top ---------------
jQuery('document').ready(function(){
	jQuery(window).scroll(function() {
		if (jQuery(this).scrollTop() >= 50) {        // If page is scrolled more than 50px
			jQuery('.transportation-footer-sec .footer-text .return-top').fadeIn(200);    // Fade in the arrow
		} else {
			jQuery('.transportation-footer-sec .footer-text .return-top').fadeOut(200);   // Else fade out the arrow
		}
	});
	jQuery('.transportation-footer-sec .footer-text .return-top').click(function() {      // When arrow is clicked
		jQuery('body,html').animate({
			scrollTop : 0                       // Scroll to top of body
		}, 1000);
	});
});

// *-*-*-*-*-*-*-*-*-*-* 		*-*-*-*-*-*-*-*-*-*-*-*-*-*
jQuery(window).scroll(function() {
 if (jQuery(this).scrollTop() > 100){
    jQuery('.transportation-header-sec').addClass("sticky");
  }
  else{
    jQuery('.transportation-header-sec').removeClass("sticky");
  }
});


jQuery(document).ready(function($) {
    jQuery('.sleek-slider').slick({
        infinite: true,
        slidesToShow: 1, // Adjust as needed
        slidesToScroll: 1,
        autoplay: true,
        autoplaySpeed: 5000,
        arrows: true,
        dots: true,
    });
});