项目作者: Rodrigo-dev7
项目描述 :
Formulário animado com JS puro e CSS Animation
高级语言: CSS
项目地址: git://github.com/Rodrigo-dev7/FormularioJS.git
Desafios
Animation
8 propriedades:
- animation-name: animationname;
- animation-duration: 2s;
- animation-delay: 3s;
- animation-fill-mode: none;
- animation-play-state: running;
- animation-timing-function: ease;
- animation-direction: reverse;
- animation-iteration-count: infinite;
@keyframes animationname {
0% {
}
100%{
}
}
podemos ter múltiplas animações no mesmo elemento
.animate {
animation: slide-top 2s, bounce 1s, fade 0.2s;
}
References
Rocketseat
CSS Animation Docs
Animation Timing Docs
Site para criar animações
Site para criar cubic Bézier timming