滑鼠懸浮圖片旋轉效果

antzone發表於2018-07-17

分享一段程式碼例項,它實現了滑鼠懸浮圖片旋轉360效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.pic {
  width: 200px;
  height: 200px;
  position: relative;
  left: 50%;
  top: 50%;
  border: 1px solid #666;
  border-radius: 100px;
  overflow: hidden;
}
img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.pic:hover {
  animation: bigger 1s linear;
}
@keyframes bigger {
  from {}
  to {
    transform: rotate(360deg);
  }
}
</style>
</head>
<body>
<div class="pic"><img src="demo/CSS/img/rotate.jpg"></div>
</body>
</html>

上面的程式碼比較簡單,更多內容可以參閱相關閱讀。

相關閱讀:

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

(2).animation可以參閱CSS3 animation一章節。

(3).@keyframes可以參閱CSS3 @keyframes一章節。

相關文章