Last active
August 29, 2015 14:07
-
-
Save iamjoel/89748de1978b4ab2752a to your computer and use it in GitHub Desktop.
transition demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="anim"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"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