css3 加载中

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
@-webkit-keyframes load{
0%{
transform:rotate(0);
}
50%{
transform:rotate(160deg);
}
100%{
transform:rotate(360deg);
}
}
.loading{
width: 40px;
height: 40px;
border: 4px solid #aaa;
border-left-color: #ddd;
border-radius: 24px;
-webkit-animation:load 1s linear 1s infinite;
}
</style>
</head>
<body>
<div class="loading"></div>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/wisdomLee_CN/article/details/81944281