div {
  width: 10rem;
  height: 10rem;
  background: #ff0000;
  transition: transform 3s linear;
}

div.clicked {
  transform: rotate(230deg);
}