<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>动画</title>
<style type="text/css">
.box{
width: 200px;
height: 200px;
background: red;
animation:aa 1s infinite alternate;
position: absolute;
left: 0;
top: 0;
transform:rotate(0deg);
}
@keyframes aa{
100%{
top: 300px;
left: 300px;
transform: rotate(900deg);
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
3D简单回力镖
最新推荐文章于 2025-02-07 11:57:51 发布