Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created October 5, 2017 20:57
Show Gist options
  • Save akopcz2/64b3857118435c92dff25275bc3c3187 to your computer and use it in GitHub Desktop.
Save akopcz2/64b3857118435c92dff25275bc3c3187 to your computer and use it in GitHub Desktop.
css anim
.box {
background: lightblue;
width: 200px;
height: 200px;
margin: 20px auto;
transition: transform .3s linear, background-color .6s ease-in-out;
transform-origin: center;
transform-style: preserve-3D;
}
.box-rotate {
transform: rotateX(180deg) rotateY(360deg);
background-color:darkblue;
}
button {
display: block;
margin: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment