<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>transitions</title>
<style>
body{
background: lightblue;
text-align: center;
}
.wrapper{
width: 100%;
padding: 20px;
box-sizing: border-box;
}
.circle{
width: 100px;padding: 50px 0;
line-height: 0;margin: 60px auto;
background: pink;color: white;
border-radius: 50%;cursor: pointer;
transition: background 1s, transform 1s 1s linear;
}
.circle:hover{
background: salmon;
transform: rotate(360deg);
}
</style>
</head>
<body>
<div class="wrapper">
<div class="circle">Hover me</div>
</div>
</body>
</html>