例如:
<body>
<div class="div1"></div>
</body>
CSS:
@keyframes myfirst { (有的浏览器或者HTML版本过低就的加上-webkit-keyframes) | |
0% { | |
150px; | |
} | |
30% { | |
300px; | |
} | |
50% { | |
500px; | |
} | |
100% { | |
600px; | |
} | |
} | |
.div1 { | |
150px; | |
height: 150px; | |
background-color: #21bbca; | |
/*-webkit-animation: myfirst 4s ease infinite;*/ | |
} | |