码迷,mamicode.com
首页 > Web开发 > 详细

超酷的CSS3网页加载效果

时间:2015-05-31 09:35:52      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:超酷的css3网页加载效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>CSS3网页加载效果</title>
<style>
#circular3dG{
position:relative;
width:128px;
height:128px;
}
.circular3dG{
position:absolute;
background-color:#000000;
width:36px;
height:36px;
-webkit-border-radius:38px;
-moz-border-radius:38px;
border-radius:38px;
-webkit-animation-name:bounce_circular3dG;
-webkit-animation-duration:1.6s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-direction:linear;
-moz-animation-name:bounce_circular3dG;
-moz-animation-duration:1.6s;
-moz-animation-iteration-count:infinite;
-moz-animation-direction:linear;
-o-animation-name:bounce_circular3dG;
-o-animation-duration:1.6s;
-o-animation-iteration-count:infinite;
-o-animation-direction:linear;
-ms-animation-name:bounce_circular3dG;
-ms-animation-duration:1.6s;
-ms-animation-iteration-count:infinite;
-ms-animation-direction:linear;
}
#circular3d_1G{
left:52px;
top:8px;
-webkit-animation-delay:0.6s;
-moz-animation-delay:0.6s;
-o-animation-delay:0.6s;
-ms-animation-delay:0.6s}
#circular3d_2G{
left:78px;
top:30px;
-webkit-animation-delay:0.8s;
-moz-animation-delay:0.8s;
-o-animation-delay:0.8s;
-ms-animation-delay:0.8s;
}
#circular3d_3G{
left:94px;
top:58px;
-webkit-animation-delay:1s;
-moz-animation-delay:1s;
-o-animation-delay:1s;
-ms-animation-delay:1s;
}
#circular3d_4G{
left:88px;
top:86px;
-webkit-animation-delay:1.2s;
-moz-animation-delay:1.2s;
-o-animation-delay:1.2s;
-ms-animation-delay:1.2s}
#circular3d_5G{
left:54px;
top:94px;
-webkit-animation-delay:1.4s;
-moz-animation-delay:1.4s;
-o-animation-delay:1.4s;
-ms-animation-delay:1.4s}
#circular3d_6G{
left:10px;
top:62px;
-webkit-animation-delay:1.6s;
-moz-animation-delay:1.6s;
-o-animation-delay:1.6s;
-ms-animation-delay:1.6s;
}
#circular3d_7G{
left:0px;
top:18px;
-webkit-animation-delay:1.8s;
-moz-animation-delay:1.8s;
-o-animation-delay:1.8s;
-ms-animation-delay:1.8s;
}
#circular3d_8G{
left:22px;
top:0px;
-webkit-animation-delay:2s;
-moz-animation-delay:2s;
-o-animation-delay:2s;
-ms-animation-delay:2s;
}
@-webkit-keyframes bounce_circular3dG{
0%{
-webkit-transform:scale(1)}
100%{
-webkit-transform:scale(.3)}
}
@-moz-keyframes bounce_circular3dG{
0%{
-moz-transform:scale(1)}
100%{
-moz-transform:scale(.3)}
}
@-o-keyframes bounce_circular3dG{
0%{
-o-transform:scale(1)}
100%{
-o-transform:scale(.3)}
}
@-ms-keyframes bounce_circular3dG{
0%{
-ms-transform:scale(1)}
100%{
-ms-transform:scale(.3)}
}
</style>
</head>


<body>
<div><A href="http://www.999jiujiu.com/">http://www.999jiujiu.com/</A></div>
<div id="circular3dG">
<div id="circular3d_1G" class="circular3dG"></div>
<div id="circular3d_2G" class="circular3dG"></div>
<div id="circular3d_3G" class="circular3dG"></div>
<div id="circular3d_4G" class="circular3dG"></div>
<div id="circular3d_5G" class="circular3dG"></div>
<div id="circular3d_6G" class="circular3dG"></div>
<div id="circular3d_7G" class="circular3dG"></div>
<div id="circular3d_8G" class="circular3dG"></div>
</div>
</body>
</html>

超酷的CSS3网页加载效果

标签:超酷的css3网页加载效果

原文地址:http://blog.csdn.net/life66881/article/details/46276483

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!