+ 3

How do I make text fade, and how I make text change color?

21st Aug 2020, 1:36 PM
Dustin 🇺🇸
2 Respostas
+ 1
Css and js
21st Aug 2020, 1:42 PM
(⌐■-■)
(⌐■-■) - avatar
+ 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.
21st Aug 2020, 1:42 PM
Divya Mohan
Divya Mohan - avatar