/
githubmirror
/
animate.css
Обзор
Документация
Войти
/
githubmirror
/
animate.css
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
source/attention_seekers/shake.css
25 строк
270 B
Panayiotis Lipiridis
Format files
16 ноя 2017, 02:20
16 ноя 2017, 02:20
134e6e5
Код
Авторство
О чём код?
@keyframes shake { from, to { transform: translate3d(0, 0, 0); } 10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0, 0); } 20%, 40%, 60%, 80% { transform: translate3d(10px, 0, 0); } } .shake { animation-name: shake; }