Answer the question
In order to leave comments, you need to log in
How to make an out-of-white effect for an image with text?
How to make the image slowly appear from white along with the text when entering the site (Just an initial splash screen like "welcome, "username"" and a button to go to the resource)
Answer the question
In order to leave comments, you need to log in
Easier through animation.
@keyframes opacity {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.block-with-text {
animation: opacity 1s;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question