task_integra_readme

This commit is contained in:
2025-10-31 16:11:41 +03:00
parent 5fa85e6e24
commit 6105df13e5
286 changed files with 22980 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
$(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);
});