/
Razavi
/
PreBid
Обзор
Документация
Войти
/
Razavi
/
PreBid
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/ui/LoadingOverlay/loadingOverlay.module.css
44 строки
650 B
Razavi
Избранное. Каталог. Карточка товара.
14 фев 2025, 16:48
14 фев 2025, 16:48
a635c3f
Код
Авторство
О чём код?
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 1); display: flex; justify-content: center; flex-direction: column; align-items: center; z-index: 9999; } .overlay img { display: block; margin-bottom: 20px; } .progressContainer { display: block; width: 225px; height: 5px; background-color: rgb(171, 203, 239); position: relative; overflow: hidden; } .progressBar { position: absolute; width: 100px; height: 5px; background: blue; animation: moveProgress 1s infinite ease-in-out; } @keyframes moveProgress { 0% { left: -100px; } 100% { left: 225px; } }