/
lstd02
/
online-library
Обзор
Документация
Войти
/
lstd02
/
online-library
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/Loader/Loader.scss
41 строка
803 B
Listopad02
feat: loader + pagination prototype
19 мар 2023, 16:08
19 мар 2023, 16:08
c830c8b
Код
Авторство
О чём код?
.loader { display: inline-block; position: relative; width: 80px; height: 80px; padding: 40px 0 0 0; div { box-sizing: border-box; display: block; position: absolute; width: 64px; height: 64px; margin: 8px; border: 8px solid #000; border-radius: 50%; animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; border-color: rgb(38,124,252) transparent transparent transparent; } div:nth-child(1) { animation-delay: -0.45s; } div:nth-child(2) { animation-delay: -0.3s; } div:nth-child(3) { animation-delay: -0.15s; } } @keyframes loader { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }