79 lines
2.1 KiB
HTML
79 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>30种CSS3炫酷页面预加载loading动画特效|DEMO1</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/default.css">
|
|
|
|
<script src="js/jquery-2.0.2.min.js"></script>
|
|
<script type="text/javascript" src="js/main.js"></script>
|
|
|
|
<style>
|
|
#loading{
|
|
background-color: #bd4932;
|
|
height: 100%;
|
|
width: 100%;
|
|
position: fixed;
|
|
z-index: 1;
|
|
margin-top: 0px;
|
|
top: 0px;
|
|
}
|
|
#loading-center{
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
#loading-center-absolute {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
height: 200px;
|
|
width: 200px;
|
|
margin-top: -100px;
|
|
margin-left: -100px;
|
|
}
|
|
#object{
|
|
width: 80px;
|
|
height: 80px;
|
|
background-color: #FFF;
|
|
-webkit-animation: animate 1s infinite ease-in-out;
|
|
animation: animate 1s infinite ease-in-out;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
margin-top: 60px;
|
|
}
|
|
@-webkit-keyframes animate {
|
|
0% { -webkit-transform: perspective(160px); }
|
|
50% { -webkit-transform: perspective(160px) rotateY(-180deg); }
|
|
100% { -webkit-transform: perspective(160px) rotateY(-180deg) rotateX(-180deg); }
|
|
}
|
|
|
|
@keyframes animate {
|
|
0% {
|
|
transform: perspective(160px) rotateX(0deg) rotateY(0deg);
|
|
-webkit-transform: perspective(160px) rotateX(0deg) rotateY(0deg);
|
|
} 50% {
|
|
transform: perspective(160px) rotateX(-180deg) rotateY(0deg);
|
|
-webkit-transform: perspective(160px) rotateX(-180deg) rotateY(0deg) ;
|
|
} 100% {
|
|
transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
|
|
-webkit-transform: perspective(160px) rotateX(-180deg) rotateY(-180deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="loading">
|
|
<div id="loading-center">
|
|
<div id="loading-center-absolute">
|
|
<div id="object"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |