Files
2025-10-31 16:11:41 +03:00

34 lines
645 B
JavaScript

$(document).ready(function () {
$('#slider1').slick({
slidesToScroll: 1,
autoplay: false,
autoplaySpeed: 5000,fade: true,
arrows: true,
dots: true,
adaptiveHeight: false
});
$('#slider2').slick({
slidesToScroll: 1,
autoplay: false,
autoplaySpeed: 5000,fade: true,
arrows: true,
dots: false,
adaptiveHeight: true
});
var pack = 30;
var timerId = setInterval(function() {
pack--;
$('.pack_value').html(pack);
}, 30000);
setTimeout(function() {
clearInterval(timerId);
}, 150000);
});