Forums

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

Home Forums CSS transitions — is there a way to auto-start? Re: transitions — is there a way to auto-start?

#103247
EkingRDL
Member

Don’t place it in the hover just put the animation in the regular style

.foo {
animation: theAnimation 2s linear;
}
.foo:hover {
/* not here */
}