CSS3 圖片由遠及近自動放大效果程式碼例項

admin發表於2017-03-01

分享一段程式碼例項,它實現了圖片放大效果,具有一定的動畫效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
@charset "utf-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%; 
}
html * {
  -webkit-tap-highlight-color: rgba(0,0,0,.05);
  margin: 0;
  padding: 0;
}
img {
  -ms-interpolation-mode: bicubic;
  width: 100%;
}
/*首頁banner*/
@keyframes scal {
  from {
    -webkit-transform: scale(1,1);
  }
  to {
    -webkit-transform: scale(1.1,1.1);
  }
}
@-webkit-keyframes scal {
  from {
    -webkit-transform: scale(1,1);
  }
  to {
    -webkit-transform: scale(1.1,1.1);
  }
}
#banner {
  width: 100%;
  overflow: hidden;
  float: left;
  position: relative;
}
#banner .banner_in {
  width: 100%;
  min-height: 480px;
  transform: scale(1,1);
  -webkit-transform: scale(1,1);
  animation: scal 10s ease infinite alternate;
  -webkit-animation: scal 10s ease infinite alternate;
}
</style>
</head>
<body>
<div id="banner">
  <div class="banner_in" id="banner01"><img src="demo/CSS/img/ali.jpg" /></div>
</div>
</body>
</html>

相關文章