Skip to content

Instantly share code, notes, and snippets.

@iamjoel
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save iamjoel/89748de1978b4ab2752a to your computer and use it in GitHub Desktop.

Select an option

Save iamjoel/89748de1978b4ab2752a to your computer and use it in GitHub Desktop.
transition demo
/**
* transition demo
*/
.anim{
height: 100px;
margin: 0 auto;
background-color: rgb(250, 128, 114);
cursor: pointer;
}
.anim:hover{
opacity: 0;
background-color: rgb(114, 191, 183);
transition:background 2s, opacity 1s ease-out 2s;
}
<div class="anim"></div>
// alert('Hello world!');
{"view":"split","fontsize":"130","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment