Animation transition visibility from hover [on hold]
Question
How can I animation from hover? It work only when hover element1, but when live this back, so it not work. see:
https://prntscr.com/pme44m
My code:
.element1 .element2{
visibility: hidden;
animation-duration:8s;
animation-delay:0s;
animation-name:fadeInDown;
animation-fill-mode:both;
}
.element1 :hover .element2{
visibility: visible;
animation-duration:.4s;
animation-delay:0s;
animation-name:fadeInDown;
animation-fill-mode:both;
}
0
css
3 years
2019-10-21T14:11:04-05:00
2019-10-21T14:11:04-05:00 0 Answers
77 views
0
Leave an answer