建站学 - 轻松建站从此开始!

建站学-个人建站指南,网页制作,网站设计,网站制作教程

当前位置: 建站学 > 网页设计 > css教程 >

CSS网页设计实例:纯CSS制作的网页的loading

时间:2012-04-30 14:50来源: 作者: 点击:
纯CSS制作的网页的loading。 <!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">   <h

纯CSS制作的网页的loading。

<!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=utf-8" />
 
<title>CSS3 Loading poluoluo.com(css3,HTML5test)</title>
 
<style>
 
#bowlG{
 
position:relative;
 
width:128px;
 
height:128px;
 
}
 
#bowl_ringG{
 
position:absolute;
 
width:128px;
 
height:128px;
 
border:11px solid #000000;
 
-moz-border-radius:128px;
 
-webkit-border-radius:128px;
 
border-radius:128px;
 
}
 
.ball_holderG{
 
position:absolute;
 
width:34px;
 
height:128px;
 
left:47px;
 
top:0px;
 
-webkit-animation-name:ball_moveG;
 
-webkit-animation-duration:2s;
 
-webkit-animation-iteration-count:infinite;
 
-webkit-animation-timing-function:linear;
 
-moz-animation-name:ball_moveG;
 
-moz-animation-duration:2s;
 
-moz-animation-iteration-count:infinite;
 
-moz-animation-timing-function:linear;
 
-o-animation-name:ball_moveG;
 
-o-animation-duration:2s;
 
-o-animation-iteration-count:infinite;
 
-o-animation-timing-function:linear;
 
-ms-animation-name:ball_moveG;
 
-ms-animation-duration:2s;
 
-ms-animation-iteration-count:infinite;
 
-ms-animation-timing-function:linear;
 
}
 
.ballG{
 
position:absolute;
 
left:0px;
 
top:-30px;
 
width:51px;
 
height:51px;
 
background:#FFFFFF;
 
-moz-border-radius:43px;
 
-webkit-border-radius:43px;
 
border-radius:43px;
 
}
 
@-webkit-keyframes ball_moveG{
 
0%{
 
-webkit-transform:rotate(0deg)}
 
100%{
 
-webkit-transform:rotate(360deg)}
 
}
 
@-moz-keyframes ball_moveG{
 
0%{
 
-moz-transform:rotate(0deg)}
 
100%{
 
-moz-transform:rotate(360deg)}
 
}
 
@-o-keyframes ball_moveG{
 
0%{
 
-o-transform:rotate(0deg)}
 
100%{
 
-o-transform:rotate(360deg)}
 
}
 
@-ms-keyframes ball_moveG{
 
0%{
 
-ms-transform:rotate(0deg)}
 
100%{
 
-ms-transform:rotate(360deg)}
 
}
 
</style>
 
</head>
 
<body>
 
<div id="bowlG">
 
<div id="bowl_ringG">
 
<div class="ball_holderG">
 
<div class="ballG">
 
</div>
 
</div>
 
</div>
 
</div>
 

</body>
 
</html>

 

(责任编辑:admin)
织梦二维码生成器
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 验证码:点击我更换图片