Chạm tôi => Tôi di chuyển.


Code <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
#div{
width:100px;
height:100px;
background:red;
position:relative;
color:white;
text-align:center;
}
#div:hover{
animation:myfirst 5s;
-webkit-animation:myfirst 5s; /* Safari và Chrome */
}
@keyframes myfirst{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:50%; top:0px;}
50% {background:blue; left:50%; top:400px;}
75% {background:green; left:0px; top:400px;}
100% {background:red; left:0px; top:0px;}
}
@-webkit-keyframes myfirst{ /* Safari and Chrome */
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:50%; top:0px;}
50% {background:blue; left:50%; top:400px;}
75% {background:green; left:0px; top:400px;}
100% {background:red; left:0px; top:0px;}
}
</style>
</head>
<body>
<div id="div">Chạm tôi => Tôi di chuyển.</div>
</body>
</html>