x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style>
7
div {
8
width: 100px;
9
height: 100px;
10
background: red;
11
position: relative;
12
animation: mymove 5s infinite;
13
/*Safari、Chrome 和 Opera*/
14
animation: mymove 5s infinite;
15
}
16
17
@keyframes mymove {
18
from {
19
left: 0px;
20
}
21
to {
22
left: 200px;
23
}
24
}