站长素材 css3动画
建议使用谷歌浏览器或者是使用IE10及以上版本的浏览器
Y轴淡出
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
5
<title>Y轴淡出-站长素材(zzsucai.com)</title>
6
<style>
7
.div {
8
    width:300px;
9
    height:200px;
10
    margin:100px auto;
11
    background:url(images/zzsucai.png)
12
}
13
#animation {
14
-webkit-animation:flipOutY 1s .2s ease both;
15
-moz-animation:flipOutY 1s .2s ease both;
16
}
17
@-webkit-keyframes flipOutY {
18
0% {
19
-webkit-transform:perspective(400px) rotateY(0deg);
20
opacity:1
21
}
22
100% {
23
-webkit-transform:perspective(400px) rotateY(90deg);
24
opacity:0
25
}
26
}
27
@-moz-keyframes flipOutY {
28
0% {
29
-moz-transform:perspective(400px) rotateY(0deg);
30
opacity:1
31
}
32
100% {
33
-moz-transform:perspective(400px) rotateY(90deg);
34
opacity:0
35
}
36
}
37
</style>
38
</head>
39
<body>
40
<div id="animation" class="div"></div>
41
</body>
42
</html>
43
下方淡入