Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Transitions Re: CSS Transitions

#110546
ianp
Member

the transition should be in the default state not the hover

body {
background: #000;
height: 100%;
-webkit-transition: opacity 2s ease-in-out 1s;
}

body:hover #logo {
opacity: 1;
}

#logo {
opacity: 0;
}