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