慕后端3584988
2016-12-04 23:38:01浏览 4562
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#fengche {
margin: 50px auto;
width: 100px;
background: rgb(155, 197, 51);
border-color: rgb(255, 255, 255);
border-style: dotted;
border-width: 50px 0px 50px 0px;
border-radius: 50%;
position: relative;
-webkit-animation: circle 4s infinite linear;
}
/*匀速 循环*/
@-webkit-keyframes circle {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="fengche"></div>
</body>
</html>
热门评论
风车是静态的? 还是动态的啊?