+ 3
How do I make text fade, and how I make text change color?
2 Respostas
+ 1
Css and js
+ 1
Use css animation with opacity property for fade
div{
Opacity:1;
animation:fade 2s linear 1;
}
@keyframes fade {
50%{opacity:0;}
}
And for text color
use
div{
color:green;
}
Revise css lesson u need it.