/
githubmirror
/
animate.css
Обзор
Документация
Войти
/
githubmirror
/
animate.css
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.0.0
source/specials/hinge.css
29 строк
495 B
Elton Mesquita
v4 release (#1050)
07 май 2020, 18:42
Не верифицирован
07 май 2020, 18:42
5a1c6b1
Код
Авторство
О чём код?
@keyframes hinge { 0% { animation-timing-function: ease-in-out; } 20%, 60% { transform: rotate3d(0, 0, 1, 80deg); animation-timing-function: ease-in-out; } 40%, 80% { transform: rotate3d(0, 0, 1, 60deg); animation-timing-function: ease-in-out; opacity: 1; } to { transform: translate3d(0, 700px, 0); opacity: 0; } } .hinge { animation-duration: calc(var(--animate-duration) * 2); animation-name: hinge; transform-origin: top left; }