<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>bounceIn-站长素材(zzsucai.com)</title>
<style>
.div {
width:300px;
height:200px;
margin:100px auto;
background:url(images/zzsucai.png)
}
#animation {
-webkit-animation:bounceIn 1s .2s ease both;
-moz-animation:bounceIn 1s .2s ease both;
@-webkit-keyframes bounceIn {
0% {
opacity:0;
-webkit-transform:scale(.3)
50% {
opacity:1;
-webkit-transform:scale(1.05)
70% {
-webkit-transform:scale(.9)
100% {
-webkit-transform:scale(1)
@-moz-keyframes bounceIn {
-moz-transform:scale(.3)
-moz-transform:scale(1.05)
-moz-transform:scale(.9)
-moz-transform:scale(1)
</style>
</head>
<body>
<div id="animation" class="div"></div>
</body>
</html>