javascript - 這個描邊動畫效果是怎么實現的呢?
問題描述
鼠標懸停在上面就會出現這個類似描邊效果,純css可以實現嗎?想實現一樣的效果具體怎么弄呢?
問題解答
回答1:開始我想嘗試用偽類來實現,但z-index好像沒辦法處理,所以就這樣模擬了。demo
<style type='text/css'>.btn{ position: relative; height: 45px; width: 200px; background: #fff; color: #6cf; text-align: center; line-height: 45px; -webkit-box-sizing:border-box; box-sizing:border-box; margin: 0 auto; border: 1px solid #ccc;}.b-l{ position: absolute; content: ''; display: block; width: 0px; height: 1px; left: -1px; top: -2px; background: #6cf; z-index: -1; -webkit-transition:width 1s linear 2s,height 0.5s linear 1.5s; transition:width 1s linear 2s,height 0.5s linear 1.5s;}.b-r{ position: absolute; content: ''; display: block; width: 0px; height: 1px; right: -1px; bottom: -2px; background: #6cf; z-index: -1; -webkit-transition:width 1s linear 0.5s,height 0.5s linear; transition:width 1s linear 0.5s,height 0.5s linear;}.btn:hover .b-l{ -webkit-transition:width 1s linear,height 0.5s linear 1s; transition:width 1s linear,height 0.5s linear 1s; width: 201px; height: 46px;}.btn:hover .b-r{ -webkit-transition:width 1s linear 1.5s,height 0.5s linear 2.5s; transition:width 1s linear 1.5s,height 0.5s linear 2.5s; width: 201px; height: 46px;}</style><body><p class='btn'> <p class='b-l'></p> <p class='b-r'></p> btn</p></body>回答2:
可以實現 主要依靠animation-delay屬性,可以自行搜索下
回答3:是SVG吧。
相關文章:
1. javascript - JS設置Video視頻對象的currentTime時出現了問題,IE,Edge,火狐,都可以設置,反而chrom卻...2. java固定鍵值轉換,使用枚舉實現字典?3. css - ionic中的柵格布局如何讓文字內容多少不同的每一列中的內容都能垂直居中?4. java - 我設置了cookie的max age,但是cookie依然在關閉游覽器后消失了5. 如何為每個應用程序配置tomcat 6的logs / catalina.out。(為sys.out,sys.err配置Web應用程序特定的日志文件)6. php自學從哪里開始?7. phpstady在win10上運行8. 求大神幫我看看是哪里寫錯了 感謝細心解答9. Python, for-else, while-else是否造成了語義歧義 ( 增加心智負擔 )?10. 這是什么情況???
