.circle {
width:250px;
height:250px;
background:#f33;
border-radius:50%;
position:absolute;
top:-250px;
right:-125px;
animation: corner-move 20s linear 1s infinite;
-webkit-animation: corner-move 20s linear 1s infinite;
}
@keyframes corner-move {
0% { top:-250px; right:-125px;}
25% { top:-160px; right:-125px;}
50% { top:-160px; right:-60px;}
75% { top:-200px; right:-60px;}
100% { top:-250px; right:-125px;}
}
@-webkit-keyframes corner-move {
0% { top:-250px; right:-125px;}
25% { top:-160px; right:-125px;}
50% { top:-160px; right:-60px;}
75% { top:-200px; right:-60px;}
100% { top:-250px; right:-125px;}
}