Lineare Animation

Von Keyframe zu Keframe...

Mein Kreis

.kreis1 {
	-webkit-animation-name: bewege_kreis1;
	-webkit-animation-duration: 5s;
	-webkit-animation-iteration-count: 5;
}
@-webkit-keyframes bewege_kreis1 {
 from {
 		top: 100px;
	}
 to {
		left: 600px;
	}
}