Mesmo seguindo os passos do professor não consigo fazer o efeito das palavras aparecerem. git: https://github.com/lande0600/Aulas_html_css.git Arquivos Index.html e Index.css
Mesmo seguindo os passos do professor não consigo fazer o efeito das palavras aparecerem. git: https://github.com/lande0600/Aulas_html_css.git Arquivos Index.html e Index.css
Oi Vinicius tudo bem?
Você tem jogar o keyframes fora da regra da classe. Assim :
.palavra-home{
position: absolute;
font-family: "Shadows Into Light", cursive;
font-weight: bold;
color: rgba(255, 127, 127,0.5);
font-size: 400%;
-webkit-animation: aparece 2s;
animation: aparece 2s;
}
@-webkit-keyframes aparece{
0%{
opacity: 0;
transform: scale(0.001);
}
}
@keyframes aparece{
0%{
opacity: 0;
transform: scale(0.001);
}
}
Espero ter ajudado!!!
Obrigado André
Disponha e bons estudos!!!