| Server IP : 85.158.181.41 / Your IP : 216.73.217.12 Web Server : Apache System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64 User : moncbefd ( 1024) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/moncbefd/www.moneta.at/blog/wp-content/themes/orsay/js/ |
Upload File : |
jQuery(function($) {
"use strict";
// hide #back-top first
$("#back-top").hide();
// fade in #back-top
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('#back-top').fadeIn();
} else {
$('#back-top').fadeOut();
}
});
// scroll body to 0px on click
$('#back-top a').on("click", function(){
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
// slider
$('.mz-slider').slick({
centerMode: true,
variableWidth: true,
slidesToShow: 1,
slidesToScroll: 1,
autoplay: true,
autoplaySpeed: 7000,
arrows: true,
prevArrow: '<a href="#" class="prev-arrow"><i class="fa fa-angle-left"></i></a>',
nextArrow: '<a href="#" class="next-arrow"><i class="fa fa-angle-right"></i></a>',
touchThreshold: 50,
dots: true,
infinite: true,
responsive: [{
breakpoint: 768,
settings: {
slidesToShow: 1,
centerMode: false,
variableWidth: false,
dots: false,
}
}]
});
});