Created
January 23, 2018 08:31
-
-
Save jsmayo/0d1e16b2f1b661663bec48da1064a7df to your computer and use it in GitHub Desktop.
Transition Playground S2.L20
This file contains hidden or 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
<p class="box">BORING</p> | |
<p class="animated box">ANIMATED</p> |
This file contains hidden or 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: #9b59b6; | |
height: 100px; | |
width: 100px; | |
line-height:100px; | |
text-align: center; | |
color: white; | |
font-size: 17px; | |
border-radius: 20px; | |
} | |
.animated { | |
transition-property: background, border-radius; | |
transition-duration: 5s, 1s; | |
} | |
.box:hover { | |
background: #e74c3c; | |
transform-origin: top left; | |
transform:scale(2); | |
border-radius: 50px; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment