Skip to content

Instantly share code, notes, and snippets.

@valhead
Forked from anonymous/dabblet.css
Created December 28, 2011 03:28
Show Gist options
  • Save valhead/1526047 to your computer and use it in GitHub Desktop.
Save valhead/1526047 to your computer and use it in GitHub Desktop.
Transitions
/* Transitions */
div {
background: #f9e;
width: 200px;
padding: 10px;
margin: 40px 0;
color: white
}
div:hover {
width: 500px;
}
div:nth-child(n+4):hover { width: 208px; }
div:nth-child(1) { transition: 0.4s ease; }
div:nth-child(2) { transition: 0.4s linear; }
div:nth-child(3) { transition: 0.4s ease-in-out; }
div:nth-child(4) { transition: 0.4s ease; }
div:nth-child(5) { transition: 0.4s linear; }
div:nth-child(6) { transition: 0.4s ease-in-out; }
<div>Long / Ease (nice)</div>
<div>Long / Linear (stiff)</div>
<div>Long / Ease-in-out</div>
<div>Short / Ease (jerky)</div>
<div>Short / Linear (nice)</div>
<div>Short / Ease-in-out</div>
{"view":"split","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment