滑鼠懸浮div實現旋轉縮放效果程式碼例項

antzone發表於2017-03-07

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

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<style>
.demo_box{
  border:1px solid #3DA5DC;
  background:#a4dcf9;
  height:100px;
  width:200px;
  text-align:center;
  color:#fff;
}
.demo_rotate{
  -webkit-transition:1s ease all;
  -moz-transition:1s ease all;
  padding:10px;
  margin:90px auto;
}
.demo_rotate:hover{
  -webkit-transform:rotate(360deg) scale(1.2,1.2);
  -moz-transform:rotate(360deg) scale(1.2,1.2);
  background:#ff9900;
}
</style>
<body>
<div class="demo_box demo_rotate">螞蟻部落</div> 
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

[CSS] 純文字檢視 複製程式碼
.demo_box{
  border:1px solid #3DA5DC;
  background:#a4dcf9;
  height:100px;
  width:200px;
  text-align:center;
  color:#fff;
}

規定div元素的相關樣式,比如邊框、背景色、高度和寬度、字型居中和字型顏色。

[CSS] 純文字檢視 複製程式碼
.demo_rotate{
  -webkit-transition:1s ease all;
  -moz-transition:1s ease all;
  padding:10px;
  margin:90px auto;
}

規定div元素的屬性如果發生改變,那麼都已都會方式進行。

並且設定div水平居中顯示。

[CSS] 純文字檢視 複製程式碼
.demo_rotate:hover{
  -webkit-transform:rotate(360deg) scale(1.2,1.2);
  -moz-transform:rotate(360deg) scale(1.2,1.2);
  background:#ff9900;
}

當滑鼠懸浮的時候,讓元素旋轉360度,並且尺寸放大1.2倍。

二.相關閱讀:

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

(2).transform可以參閱CSS3 2D轉換一章節。

相關文章