+ 2
Dropdown menu hover smooth
Hello Guys, it's me again ^^ Does anyone know how i can make the hover of the Navigation smoother? I want that dropdown menu to open smooth, if you know what i mean x) Thank you https://code.sololearn.com/Wb9SOh5HBqFM/?ref=app
6 Answers
+ 8
Aha! Thatās because the element is still under there, just you canāt see it. Maybe play around with the height property and the opacity property so that the box for all the list items gets bigger, and thereās more space. A bit confusing, so hereās an example: https://code.sololearn.com/W7v5Pmo7E183/?ref=app
+ 6
The display property canāt animate, so I would do something like opacity: 0; and opacity: 1;. And, the transition-duration property must be for the child elements, not the parent.
+ 2
Ah that looks good! I dont understand that code at all but i'm really thankful for your good answer!!
+ 2
FlyiiingDani you can add the css property āpointer-events: none;ā to the child element. Then change it to āautoā when the parent is hovered, this is to make sure the child isnāt hidden once the mouse leaves the parent.
+ 2
Thank you, Victor. Rowsej's solution is really good but i will try what you suggested.
+ 1
Thank you very much for your quick answer! I tried what you suggestes but there is a problem now. if i even hover the area under the Nav the opacity switch from 0 to 1. Maybe you know an other way.