滑鼠懸浮div實現旋轉效果

antzone發表於2018-07-09

分享一段程式碼例項,它實現了滑鼠懸浮div能夠實現旋轉效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div {
  width: 30px;
  height: 30px;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100%;
  margin-top: 50px;
  text-align: center;
  line-height: 30px;
}
.antzone:hover {
  color: #f00;
  transform: rotate(360deg);
  transition: all 1s;
}
</style>
</head>
<body>
  <div class="antzone">1</div>
  <div class="antzone">2</div>
</body>
</html>

上面的程式碼實現了旋轉效果,更多內容可以參閱相關閱讀。

相關閱讀:

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

(2).:hover參閱CSS E:hover一章節。

(3).transform: rotate()參閱transform: rotate()一章節。

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

相關文章