Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save akirchmyer/7508862 to your computer and use it in GitHub Desktop.

Select an option

Save akirchmyer/7508862 to your computer and use it in GitHub Desktop.
A Pen by Andrew Kirchmyer.
<button class="block">Hover Me</button>
.block {
background-color: green;
width: 100px;
height: 50px;
border-radius: 20px;
-webkit-transition: all 5s cubic-bezir(0, 1, 1, 2);
}
.block:hover {
width: 120px;
height: 60px;
-webkit-transition: all .5s cubic-bezier(0,1,1,2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment