CSS3滑鼠懸浮橫條從中間向兩邊擴充套件效果

antzone發表於2018-08-17

分享一段程式碼例項,它實現了滑鼠懸浮,能夠使橫條向兩邊擴充套件。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.antzone {
  border-bottom: 5px solid #ccc;
  height: 5px;
  width: 400px;
  position: relative;
  display: block;
}
.antzone:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 5px;
  top: 5px;
  left: 50%;
  background-color: #f00;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.antzone:hover:before {
  -webkit-transform: scaleX(40);
  -moz-transform: scaleX(40);
  transform: scaleX(40);
  }
</style>
</head>
<body>
<div class="antzone"></div>
</body>
</html>

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

相關閱讀:

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

(2).transform: scal()參閱transform: scale()一章節。

相關文章