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
color: white;
12
animation: mymove 2s infinite linear alternate;
13
/* Chrome、Safari、Opera */
14
animation: mymove 2s infinite linear alternate;
15
}
16
/* Chrome、Safari、Opera */
17
18
@-webkit-keyframes mymove {
19
to {
20
transform: rotateY(180deg);
21
}
22
}
23
24
@keyframes mymove {