/
githubmirror
/
animate.css
Обзор
Документация
Войти
/
githubmirror
/
animate.css
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.2.4
source/flippers/flipOutX.css
20 строк
336 B
Fraser Nevett
Fixed #293 -- animations should only run when the `animated` class is used.
12 мар 2015, 21:24
12 мар 2015, 21:24
3b7735b
Код
Авторство
О чём код?
@keyframes flipOutX { 0% { transform: perspective(400px); } 30% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); opacity: 1; } 100% { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); opacity: 0; } } .flipOutX { animation-name: flipOutX; backface-visibility: visible !important; }