I'm trying to make a fade-in effect as soon as my page is opened using only CSS, would I have some way to do that? Are the browser enabled?
I did a search and what I found I'm leaving here to better illustrate the question.
img {
opacity: 0;
-webkit-animation: fadeIn 1s ease-in-out;
-moz-animation: fadeIn 1s ease-in-out;
-o-animation: fadeIn 1s ease-in-out;
animation: fadeIn 1s ease-in-out;
-webkit-animation-fill-mode: forwards;
-moz-animation-fill-mode: forwards;
-o-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}