2 回答

TA貢獻(xiàn)6條經(jīng)驗 獲得超2個贊
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>無標(biāo)題文檔</title>
<style type="text/css">
.box{
width: 80px;
height: 80px;
animation: rotate 1s infinite linear;
background-color: #333;
margin: 50px auto;
}
@-webkit-keyframes rotate{
from{ ? ??
? ? ? ? -webkit-transform:rotate(0deg); ? ??
? ? } ? ??
? ? to{ ? ??
? ? ? ? -webkit-transform:rotate(360deg); ? ??
? ? } ? ??
}
@keyframes rotate{
from{ ? ??
? ? ? ? -webkit-transform:rotate(0deg); ? ??
? ? } ? ??
? ? to{ ? ??
? ? ? ? -webkit-transform:rotate(360deg); ? ??
? ? } ? ??
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>
添加回答
舉報