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 2s infinite;
13
animation-play-state: paused;
14
/*Safari 和 Chrome*/
15
animation: mymove 2s infinite;
16
animation-play-state: paused;
17
}
18
19
@keyframes mymove {
20
from {
21
left: 0px;
22
}
23
to {
24
left: 200px;