最近在做公司的登錄頁,UE同學(xué)希望第三方登錄的圖標在hover的時候有一個圓形的縮放效果(原話是波紋效果-_-||),效果參考騰訊新聞和網(wǎng)易新聞的分享按鈕。
騰訊新聞的分享按鈕hover效果(新聞頁面):

網(wǎng)易新聞的分享按鈕hover效果(新聞頁面):

看了一下這兩個頁面的源碼,主要是用了 transform:scale() 和 transition ,自己的最終的實現(xiàn)效果如下:

實現(xiàn)思路大體是模仿網(wǎng)易新聞的,布局如下:
| <a href="" class="third-party third-party-weixin"> <i></i> <span></span> </a> | 
外層的a標簽用于整體容器和跳轉(zhuǎn),內(nèi)層的i標簽使用偽元素::before和::after分別作為背景色和前景色,這兩個偽元素均絕對定位,垂直水平居中,::after設(shè)置縮放屬性 transform:scale(0) ,過渡動畫屬性 transition: all .3s ,正常情況下::before可見,當hover的時候::after設(shè)置縮放屬性 transform:scale(1) ,兩個相鄰絕對定位元素在不設(shè)置z-index的情況下,文檔流在后的元素在上,并且在有過渡動畫屬性 transition 的情況下實現(xiàn)了縮放動畫效果。
span標簽用于展示logo,可以是圖片或者web字體,只要透明就可以,這里用了圖片。 CSS(此處使用的是sass)如下:
| .third-party { position: relative; // 為了兼容firefox必須要變成block或inline-block display: inline-block; width: 48px; height: 48px; margin: { left: 6%; right: 6%; } &:hover { i { &::after { transform: scale(1); } } } span { // position: relative是為了兼容firefox和IE position: relative; display: block; width: 48px; height: 48px; background-size: 30px; background-position: center; background-repeat: no-repeat; } i { position: absolute; top: 0; left: 0; width: 48px; height: 48px; &::before { content: ''; border-radius: 50%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; } &::after { content: ''; transition: all .3s; border-radius: 50%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; transform: scale(0); } } &.third-party-weixin { span { background-image: url(../images/login/weixin-64.png); } i { &::before { background-color: #20a839; } &::after { background-color: #30cc54; } } }} |