/
tisit
/
FUXA_SCADA
Обзор
Документация
Войти
/
tisit
/
FUXA_SCADA
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/electron/loading.html
54 строки
1 KB
Matthew Reed
Refactor and tidy up directories and add sub directory for electron
13 ноя 2025, 22:51
13 ноя 2025, 22:51
4a879f7
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>FUXA - Loading...</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #424242; color: #FFFFFF; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; } .loading-container { text-align: center; } .spinner { width: 60px; height: 60px; border: 4px solid rgba(255, 255, 255, 0.3); border-top: 4px solid #448AFF; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } h1 { color: #FFFFFF; margin-bottom: 10px; font-size: 24px; } p { color: rgba(255, 255, 255, 0.8); font-size: 16px; margin: 0; } </style> </head> <body> <div class="loading-container"> <div class="spinner"></div> <h1>FUXA</h1> <p id="loadingText">Loading...</p> </div> </body> </html>