CSS3連結<a>滑鼠懸浮動畫效果

antzone發表於2018-05-28

本章節分享一段程式碼例項,它實現了滑鼠懸浮連結<a>之上實現動畫效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
*{
  padding:0;
  margin:0;
}
.button{
  position: relative;
  color: #cf9d68;
  border: 1px solid #cf9d68;
        padding: 1em 1.5333333333em;
  transition: color .65s cubic-bezier(1,0,0,1);
        top: 3em;
  text-decoration:none;
  margin:50px;
}
.button__text{
  position: relative;
        z-index: 2;
}
.button::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: #cf9d68;
  -webkit-transition: width .65s cubic-bezier(1,0,0,1);
  transition: width .65s cubic-bezier(1,0,0,1);
}
 .button:hover {
        color:#FFF
}
.button:hover:before {
        width:100%
}
</style>
</head>
<body>
<a href="" class="button"><span class="button__text">螞蟻部落</span></a>
</body>
</html>

上面的程式碼實現了我們的要求,更多內容可以參閱相關內容。

相關閱讀:

(1).transition可以參閱CSS3 transition一章節。

(2).::before可以參閱CSS E:before/E::before一章節。

相關文章