Skip to content

Instantly share code, notes, and snippets.

@jsmayo
Created January 23, 2018 08:31
Show Gist options
  • Save jsmayo/0d1e16b2f1b661663bec48da1064a7df to your computer and use it in GitHub Desktop.
Save jsmayo/0d1e16b2f1b661663bec48da1064a7df to your computer and use it in GitHub Desktop.
Transition Playground S2.L20
<p class="box">BORING</p>
<p class="animated box">ANIMATED</p>
.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