<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
border-radius: 50%;
background: #1c87c9;
color: #eee;
font-weight: bold;
position: relative;
text-align: center;
padding: 8px;
-webkit-animation: mymove 5s infinite;
/* Safari 4.0 - 8.0 */
animation: mymove 5s infinite;
}
/* Safari 4.0 - 8.0 */
#div1 {
-webkit-animation-timing-function: linear;
}
#div2 {
-webkit-animation-timing-function: ease;
}
#div3 {
-webkit-animation-timing-function: ease-in;
}
#div4 {
-webkit-animation-timing-function: ease-out;
}
#div5 {
-webkit-animation-timing-function: ease-in-out;
}
#div1 {
animation-timing-function: linear;