Телефон: +00 1234 567 или напишите нам: emailsample@email.com

Пн - Пт / 9:00-21:00, Сб - Вс / 10:00-20:00

Блог

onst snowContainer = $('.snow-container'); snowContainer.empty(); for (let i = 0; i < 50; i++) { const snowflake = $('
'); // Random size between 2px and 6px const size = Math.random() * 4 + 2; snowflake.css({ width: size + 'px', height: size + 'px', left: Math.random() * 100 + '%', top: -10 + 'px', animationDuration: Math.random() * 5 + 5 + 's', animationDelay: Math.random() * 2 + 's' }); snowContainer.append(snowflake); } }); $('#ftco-nav').on('hidden.bs.collapse', function() { // Clear snow when navbar is hidden $('.snow-container').empty(); }); });