Home › Forums › CSS › CSS Transitions › Re: CSS Transitions
September 21, 2012 at 8:41 pm
#110546
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;
}