1. 程式人生 > >css 線條動畫

css 線條動畫

  • 動畫的預覽
    這裡寫圖片描述
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>滑鼠移入下劃線展開</title>
    <style type="text/css">
        #line {
            width: 500px;
            height: 50px;
            background: gray;
            margin
: 20px auto
; position: relative; }
#line:after { content: ""; width: 0; height: 3px; background: red; position: absolute; top: 100%; left: 50%; transition: all .5s; } #line
:hover:after { left: 0%; width: 100%; }
</style> </head> <body> <div id="line"></div> </body> </html>