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