Site logo

Archived topic

fade-in-block

5 replies · Started by Heinrich on August 26, 2022

Viewing posts 1–6 of 6

here we go

hi david, check again please

Change this CSS:

#fade-in-block {
    opacity: 0;
    transition: opacity 0.2s ease-in;
    transition-delay: opacity 5s;
}
#fade-in-block.active {
    opacity: 1;
}

to:

#fade-in-block {
    opacity: 0;
    transition: opacity 0.2s ease-in;
    transition-delay: 5s;
}
#fade-in-block.active {
    opacity: 1;
}

hi perfect working, tks for help

Glad to hear that

This archived topic is closed to new replies.