<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>X轴淡出-站长素材(zzsucai.com)</title>
<style>
.div {
width:300px;
height:200px;
margin:100px auto;
background:url(images/zzsucai.png)
}
#animation {
-webkit-animation:flipOutX 1s .2s ease both;
-moz-animation:flipOutX 1s .2s ease both;
@-webkit-keyframes flipOutX {
0% {
-webkit-transform:perspective(400px) rotateX(0deg);
opacity:1
100% {
-webkit-transform:perspective(400px) rotateX(90deg);
opacity:0
@-moz-keyframes flipOutX {
-moz-transform:perspective(400px) rotateX(0deg);
-moz-transform:perspective(400px) rotateX(90deg);
</style>
</head>
<body>
<div id="animation" class="div"></div>
</body>
</html>