css links suspended animation

style

3b4581cec6146b0f6608ad7c7dbd873a7bc.jpg

Code

.site-top ul li a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -16px;
    height: 6px;
    background-color: #FE9600;
    width: 100%;
    max-width: 0;
    transition: max-width .25s ease-in-out;
}

 

Reproduced in: https: //my.oschina.net/lemos/blog/3057157

Guess you like

Origin blog.csdn.net/weixin_33971205/article/details/91684148