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