jquery - How to Animate a Border Below a Horizontal Nav Item from Left to Right -
id animate border in horizontal navigation left right on hover. closest example have been able find 1 here: http://css-tricks.com/examples/magicline/ not im looking for.
i want hover , have underline draw left right.
thanks advice.
<div class="menuitem"> menu item <span></span> </div>
css:
.menuitem { position: relative; display: inline-block; width: 80px; height: 32px; text-align: center; background: #ffe; cursor: pointer; } .menuitem span { position: absolute; bottom: 0; left: 0; width: 0%; height: 3px; background: #000; transition: 0.6s; } .menuitem:hover span { width: 100%; }
Comments
Post a Comment