Прикола ради )
<style>
body{
background-color: rgba(0,0,0,1);
-webkit-animation: fadeOutBackground forwards 1s 1s;
animation: fadeOutBackground forwards 1s 1s;
}
@-webkit-keyframes fadeOutBackground{
0%{
background-color: rgba(0,0,0,1);
}
100% {
background-color: rgba(0,0,0,0);
}
}
@keyframes fadeOutBackground{
100% {
background-color: rgba(0,0,0,0);
}
}
</style>
Кто подскажет на transition это можно сделать?