1. 程式人生 > >實用CSS3實現旋轉載入中動畫

實用CSS3實現旋轉載入中動畫

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
 .img{
 width:200px;
 height: 200px;
 border: 2px solid #fff;
 border-left-color: blue;
 border-right-color: blue;
 border-top-color: blue;
 margin: 100px;
 border-radius: 50%;
 -webkit-animation:circle 1s infinite linear;
 }
 @-webkit-keyframes circle{
 0%{ transform: rotate(0deg); }
 100%{ transform: rotate(360deg); }
 }
</style>
</head>
<body>
<div class="img"></div>
</body>
</html>

。。。。。。。。。。。。