CSS3標懸浮圓形縮放效果

螞蟻小編發表於2018-07-02
本章節分享一段程式碼例項,它實現了滑鼠懸浮圓形元素實現縮放效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#antzone:hover {
  transform: scale(1.1);
}
#antzone {
  width:150px;
  height:150px;
  background:#ccc;
  margin:0px auto;
  transition: all .5s ease;
  border-radius:75px;
  cursor:pointer;
}
</style>
<script>
</script>
</head>
<body>
<div id="antzone"></div>
</body>
</html>

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

相關閱讀:

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

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

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

相關文章