<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div{
width: 100px;
height: 100px;
animation: transform 2s linear 0s infinite alternate;
}
@keyframes transform {
form{
transform: translate(0) rotate(0);
background-color: skyblue;
border-radius: 0px;
}
to{
transform: translateX(200px) rotate(360deg);
background-color: pink;
border-radius: 50%;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>