/
efr
/
SmartCity
Обзор
Документация
Войти
/
efr
/
SmartCity
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
static/js/loading.js
16 строк
491 B
Sergey
add_project
27 фев 2025, 19:33
27 фев 2025, 19:33
7eeda08
Код
Авторство
О чём код?
document.addEventListener('mousemove', e => { Object.assign(document.documentElement, { style: ` --move-x: ${(e.clientX - window.innerWidth / 2) * -.005}deg; --move-y: ${(e.clientY - window.innerHeight / 2) * .01}deg; ` }) }) document.querySelector('.button-start').addEventListener('click', function() { if(this.classList.contains('loading')) return; this.classList.add('loading'); setTimeout(() => { window.location.href = '/manifest.html'; }, 2000); });