CSS 3 Transition Example - Rotate Element
HTML
<div class="box1">Rotate</div>
CSS
.box1 {
padding: 70px;
margin: 5px;
background: #c5e1a5;
width: 100px;
text-align: center;
font-size: 1.5em;
font-weight: 900
}
.box1:hover {
transform: rotate(30deg)
}
.box1 {
transition-property: all;
transition-duration: 2s
}