css3-anime/anime/loading/13/demo23.html

89 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动画特效|DEMO23</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: #334d5c;
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: 50px;
width: 50px;
margin-top: -25px;
margin-left: -25px;
}
.object{
width: 50px;
height: 5px;
background-color: #FFF;
-webkit-animation: animate 2s infinite;
animation: animate 2s infinite;
position: absolute;
top: 0px;
right: -200px;
}
@-webkit-keyframes animate {
50% {
-ms-transform: translate(-400px,0) rotate(-360deg);
-webkit-transform: translate(-400px,0) rotate(-360deg);
transform: translate(-400px,0) rotate(-360deg);
}
100% {
-ms-transform: translate(0,0) rotate(360deg);
-webkit-transform: translate(0,0) rotate(360deg);
transform: translate(0,0) rotate(360deg);
}
}
@keyframes animate {
50% {
-ms-transform: translate(-400px,0) rotate(-360deg);
-webkit-transform: translate(-400px,0) rotate(-360deg);
transform: translate(-400px,0) rotate(-360deg);
}
100% {
-ms-transform: translate(0,0) rotate(360deg);
-webkit-transform: translate(0,0) rotate(360deg);
transform: translate(0,0) rotate(360deg);
}
}
</style>
</head>
<body>
<div id="loading">
<div id="loading-center">
<div id="loading-center-absolute">
<div class="object" id="object_one"></div>
</div>
</div>
</div>
</body>
</html>