CSS3滑鼠懸浮動畫按鈕效果

admin發表於2018-07-12

分享一段程式碼例項,它實現了滑鼠懸浮實現動畫按鈕的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
*, *:after, *:before {
  box-sizing: border-box;
}
.box {
  position: relative;
  margin: 30px auto;
  display: block;
  text-align: center;
}
button {
  border: none;
  color: inherit;
  background: none;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.button {
  display: inline-block;
  position: relative;
  z-index: 1;
  min-width: 150px;
  max-width: 250px;
  margin: 1em;
  padding: 1em 2em;
  overflow: hidden;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  transition: color 0.3s ease-out;
}
.button:before,.button:after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  transition: all 0.3s ease-out;
}
.button span {
  vertical-align: middle;
}
.UpDown {
  color: #fff;
  border-radius: 4px;
}
.UpDown:hover {
  color: #7986cb;
}
.UpDown:after {
  background: #37474f;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
}
.UpDown:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7986cb;
  transform: translate3d(-100%,100%,0);
}
.UpDown:hover:before {
  transform: translate3d(0,0,0);
}
.OutIn {
  color: #fff;
  border-radius: 4px;
}
.OutIn:hover {
  color: #3f51b5;
}
.OutIn:after, .OutIn:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.OutIn:before {
  border: 2px solid #3f51b5;
  background-color: #fff;
  opacity: 0;
  -transform: scale3d(1.2,1.2,1);
}
.OutIn:hover:before {
  opacity: 1;
  transform: scale3d(1,1,1);
}
.OutIn:after {
  background-color: #3f51b5;
  transform: scale3d(1,1,1);
}
.OutIn:hover:after {
  opacity: 0;
  transform: scale3d(0.5,0.5,1);
}
</style>
</head>
<body>
  <div class="box">
    <div class="box">
      <button class="button UpDown">
        <span>UpDown</span>
      </button>
      <button class="button OutIn">
        <span>OutIn</span>
      </button>
    </div>
  </div>
</body>
</html>

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

相關閱讀:

(1).box-sizing參閱CSS3 box-sizing一章節。

(2).appearance參閱css3 appearance一章節。

(3).backface-visibility參閱CSS3 backface-visibility一章節。

(4).transition參閱css transition一章節。

(5).border-radius參閱CSS3 border-radius一章節。

相關文章