CSS3製作hover底線動畫

來源:互聯網
上載者:User

標籤:

1、前幾天看到Hexo的next主題標題hover效果很炫,自己嘗試寫了一個,另一個是next的實現,照例先

  

2、實現小黑科技
<div>        <a href="javascript:void(0);" class="demo1">自己實現的hover效果</a></div>
.demo1{            position: relative;            text-decoration: none;            font-size: 20px;            color: #333;        }.demo1:before{            content: "";            position: absolute;            left: 50%;            bottom: -2px;            width: 0;            height: 2px;            background: #4285f4;            transition: all .3s;        }.demo1:hover:before{            width: 100%;            left: 0;            right: 0;        }

關鍵在於沒有hover的時候定義width為0,這樣可以實現寬度從0到100%的變化。

left為50%,目的是為了動畫開始的位置是在50%的位置。

 

3、hexo next主題的官方實現
<div>    <a href="javascript:void(0);" class="demo2">Hexo next主題的實現</a></div>
.demo2{            position: relative;            text-decoration: none;            font-size: 20px;            color: #333;        }.demo2:before{            content: "";            position: absolute;            left: 0;            bottom: -2px;            height: 2px;            width: 100%;            background: #4285f4;            transform: scale(0);            transition: all 0.3s;        }.demo2:hover:before{            transform: scale(1);        }

這個實現的關鍵就是scale(0)到scale(1)的變化。

CSS3的scale transform的原點是中點,所以會從中間的位置開始動畫。

 

4、兩者區別

通過動畫也看出來,next的動畫有透明漸層的效果,和scale的表現形式有關。

第一個實現只是width變化,但是也可以用animation實現和next一樣的效果。

 

不管怎樣,總算是實現了吧。。。

原文地址:http://www.cnblogs.com/zhangmingze/p/5351983.html

CSS3製作hover底線動畫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.