/
TimurIsm
/
OpenEyes
Обзор
Документация
Войти
/
TimurIsm
/
OpenEyes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
front/src/css/Eye.css
39 строк
666 B
IsmTimur
Initial commit: added backend (Express) and frontend (React Vite)
19 июн 2025, 18:32
19 июн 2025, 18:32
6cf6155
Код
Авторство
О чём код?
.eye { width: 150px; height: 75px; background-color: white; border-radius: 75px; border: 5px solid black; position: relative; display: flex; justify-content: center; align-items: center; overflow: hidden; transition: all 0.5s ease; } .pupil { width: 45px; height: 45px; background-color: black; border-radius: 50%; position: absolute; transition: all 0.5s ease; } .left .pupil { transform: translateX(-30px); } .right .pupil { transform: translateX(30px); } .center .pupil { transform: translateX(0); } .blink .pupil { height: 5px; transition: height 0.2s ease; }