<html>
<head>
<style>
.standartDiv{
border:1px solid black;
background-color:yellow;
position:absolute;
left:50px;
top:50px;
width:100px;
height:30px;
font-weight:bold;
font-size:22px;
transition: color 4s, background-color 4s, left 4s, top 4s;
}
.standartDiv:hover{
left:150px;
top:150px;
background-color:green;
color:red;
border-radius:30px;
animation : move 4s;
}
</style>
</head>
<body>
<br/>
<div class="standartDiv">
GODORO
</div>
<br/>
</body>
</html>
Dosyayı İndir