css animation和keyframes
keyframes应用在animation上,animation应用在元素上。
<html>
<style type="text/css">
.div1 {
width:100px;height:100px;border:1px solid #000;position:relative;
animation : move 800ms ease-out infinite alternate;
}
@keyframes move {
from {top:0px;}
to {top:100px;}
}
</style>
<body>
<div class="div1">
</div>
</body>
</html>
感谢您的阅读,您的支持是我写博客动力。

浙公网安备 33010602011771号