这是一个动画效果,一个圆在桌面上动

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
div{
200px;
height:200px;
position:relative;
background:rgba(205,105,12,0.5);
border-radius:100px;
animation:move 3s infinite alternate;
}
/*@keyframes move{
0%{
top:100px;
left:0px;}
20%{
left:100px;
top:0px}
50%{
left:500px;
top:30px;}
100%{
left:800px;
top:50px;}}*/
@keyframes move{
0%{
transform:translate(100px,100px);}
50%{
transform:translate(0px,0px);}
100%{
transform:translate(1000px,100px);}}

</style>
</head>

<body>
<div></div>
</body>
</html>

原文地址:https://www.cnblogs.com/lylcn/p/6818825.html