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%; } 

http://jsfiddle.net/samliew/qumgy/


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -