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

CSS3 加载进度样式

时间:2015-08-19 00:13:13      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

<html>
	<head>
		<style type="text/css">
			body{
				background-color: green;
			}

			.circle{
				margin:0 auto;
				margin-top:150px;
				background-color: gray;
				width: 10em;
				height: 10em;
				border-radius: 50%;
				border: 1.1em solid rgba(255,255,255,0.2);
				border-left-color:#fff;
				-webkit-animation: load 1.1s infinite linear;
			}

			@-webkit-keyframes load{
				from{
					transform:rotate(0deg);
				}
				to{
					transform:rotate(360deg);
				}
			}
		</style>
	</head>
	<body>
		<div class="circle">
		</div>
	</body>
</html>

  

CSS3 加载进度样式

标签:

原文地址:http://www.cnblogs.com/chengshuiqiang/p/4740932.html

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