<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove 5s infinite;
-moz-animation:mymove 5s infinite; /* Firefox */
-webkit-animation:mymove 5s infinite; /* Safari and Chrome */
-o-animation:mymove 5s infinite; /* Opera */
}
@keyframes mymove
0% {top:0px;}
25% {top:200px;}
75% {top:50px}
100% {top:100px;}
@-moz-keyframes mymove /* Firefox */
@-webkit-keyframes mymove /* Safari and Chrome */
@-o-keyframes mymove /* Opera */
</style>