border animate (hover)
HTML如下: <section class= "box" > <div class= "boALL" > </div> <!-- all borders --> <div class= "boTop" ></div> <!-- 上 --> <div class= "boRight" ></div> <!-- 右 --> <div class= "boBottom" ></div> <!-- 下 --> <div class= "boLeft" ></div> <!-- 左 --> <a href= "javascript: void(0)" class= "txt" > HOVER HERE </a> </section> css setting: .box { display: inline-block ; width: 200px ; height: 60px ; background-color: #999 ; position: absolute ; left: 0 ; right: 0 ; top: 0 ; bottom: 0 ; margin: auto ; text-align: center ; line-height: 60px ; transition: background-color .7s ; } .box:hover { background-color: #abc ; transition: background-color .3s .7s ; }