滑鼠懸浮實現環形旋轉效果

螞蟻小編發表於2018-07-15

分享一段程式碼例項,它實現滑鼠懸浮環形旋轉效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
body {
  background: #333;
}
.demo, .img, .mask, .border {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.demo {
  position: relative;
  display: block;
  margin: 100px auto;
}
.img {
  background: #ddd;
  background-size: cover;
  background-position: 50% 50%;
}
.mask, .border {
  position: absolute;
  left: 0;
  top: 0;
}
.mask {
  text-align: center;
  color: #000;
  transition: all .5s;
}
.info {
  margin-top: 50%;
  transform: translateY(-50%);
}
.border {
  border: 10px solid #999;
  border-top-color: #E07514;
  border-left-color: #E07514;
  box-sizing: border-box;
  transition: all .5s;
}
.demo:hover .mask {
  background-color: rgba(0,0,0,.6);
  color: #fff;
}
.demo:hover .border {
  transform: rotate(180deg);
}
</style>
</head>
<body>
  <a href="javascript:;" class="demo">
    <div class="img"></div>
    <div class="mask">
      <div class="info">
        <h3>螞蟻部落</h3>
        <p>提供前端相關知識分享</p>
      </div>
    </div>
    <div class="border"></div>
  </a>
</body>
</html>

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

相關閱讀:

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

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

(3).transform參閱CSS3 transform一章節。

相關文章