Created
October 5, 2017 20:57
-
-
Save akopcz2/64b3857118435c92dff25275bc3c3187 to your computer and use it in GitHub Desktop.
css anim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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