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,
});
});