/
githubmirror
/
animate.css
Обзор
Документация
Войти
/
githubmirror
/
animate.css
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/modules/slowDownAnimations.mjs
18 строк
509 B
Elton Mesquita
v4 release (#1050)
07 май 2020, 18:42
Не верифицирован
07 май 2020, 18:42
5a1c6b1
Код
Авторство
О чём код?
/** Slows animations */ const slowDownAnimations = (target) => { const targetEl = document.querySelector(target) const doc = document.documentElement targetEl.addEventListener('click', () => { const currentDuration = getComputedStyle(document.documentElement) .getPropertyValue('--animate-duration') const newDuration = currentDuration === '1s' ? '2s' : '1s' document.documentElement.style.setProperty('--animate-duration', newDuration); }) } export default slowDownAnimations