CSS3 background-position定位背景圖片動畫效果

antzone發表於2017-03-21

本章節分享一段程式碼例項,它實現了利用background-position屬性控制背景圖片實現動畫效果。

背景圖片都集中在一張圖片上,如下:

aid[202]

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
* {
  padding: 0px;
  margin: 0px;
}
body, html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body {
  position: relative;
  background-attachment: fixed;
}
.zoombie {
  width: 200px;
  height: 312px;
  background-image: url("data/attachment/portal/201703/21/090418lrutld5ary4lbz7z.png");
  animation: play 1.8s steps(10) infinite;
}
@keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -2000px;
  }
}
#wrapper {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
</style>
</head>
<body>
  <div id="wrapper">
    <div class="zoombie"></div>
  </div>
</body>
</html>

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

相關閱讀:

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

(2).@keyframes參閱CSS3 @keyframes一章節。

(3).background-position參閱CSS background-position一章節。

(4).transform: translate()參閱transform: translate()用法介紹一章節。

(5).position參閱css position定位詳解一章節。

相關文章