Skip to content

Instantly share code, notes, and snippets.

@valhead
Created December 29, 2011 00:59
Show Gist options
  • Save valhead/1530860 to your computer and use it in GitHub Desktop.
Save valhead/1530860 to your computer and use it in GitHub Desktop.
Easing comparison
/* Easing comparison */
body{background:#F7F8F8;}
div {background: #C10280; width: 200px;padding: 10px;margin: 30px 0;color: white;}
div:hover { width: 208px; }
div:nth-child(1){ transition: 0.4s ease; }
div:nth-child(2) { transition: 0.4s ease-in-out; }
div:nth-child(3) { transition: 0.4s linear; }
<div>Short / Ease</div>
<div>Short / Ease-in-out</div>
<div>Short / Linear</div>
{"view":"split-vertical","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment