代码编辑器:
x
1
2
<meta charset="utf-8"><link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
3
4
<style>
5
#myDIV {
6
height: 200px;
7
background-color: lightblue;
8
animation: mymove 5s infinite; /* Chrome, Safari, Opera */
9
animation: mymove 5s infinite;
10
}
11
12
/* Chrome, Safari, Opera */
13
@-webkit-keyframes mymove {
14
50% {margin: 50px;}
15
}
16
17
/* Standard syntax */
18
@keyframes mymove {