/
githubmirror
/
animate.css
Обзор
Документация
Войти
/
githubmirror
/
animate.css
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.5.0
source/specials/rollIn.css
17 строк
287 B
mesge
Replaced instances of step 100% with to to preserve consistency
21 авг 2015, 05:26
21 авг 2015, 05:26
a479864
Код
Авторство
О чём код?
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ @keyframes rollIn { from { opacity: 0; transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); } to { opacity: 1; transform: none; } } .rollIn { animation-name: rollIn; }