I've been attempting to create a unique hover effect for my menu. The specific effect I'm aiming for can be seen on www.firstborn.com. It involves sliding down from the top in a non-uniform manner. Despite trying various CSS techniques and examining their code, I just can't seem to get it right. Is it not achievable with CSS alone? Would I need to incorporate something like animate.css?
Below is the code snippet I have been using, with the ID corresponding to my entire menu.
#Top_bar:hover {
-webkit-transition: 0.2s height cubic-bezier(0.77, 0, 0.175, 1);
-moz-transition: 0.2s height cubic-bezier(0.77, 0, 0.175, 1);
transition: 0.2s height cubic-bezier(0.77, 0, 0.175, 1);
background: #000;
color: #fff;
}