/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-34-004/main.js
19 строк
451 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
startAutoplay() { if (this.slideCount <= 1) return; if (window.matchMedia?.('(prefers-reduced-motion: reduce)')?.matches) return; this.stopAutoplay(); this.autoplayInterval = window.setInterval(() => this.next(), this.autoplayDelay); } stopAutoplay() { if (this.autoplayInterval) { window.clearInterval(this.autoplayInterval); this.autoplayInterval = null; } } resetAutoplay() { this.stopAutoplay(); this.startAutoplay(); }