Created
February 10, 2012 02:57
-
-
Save luiscielak/1785901 to your computer and use it in GitHub Desktop.
CSS Transitions
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
/** | |
* CSS Transitions | |
* 2012-02-05 | |
*/ | |
a.foo{ | |
transition-property: background 0.3s ease 0.5s; /* property; duration; timing; delay*/ | |
padding: 5px 10px; | |
background: #9c3; | |
} | |
a.foo:hover, | |
a.foo.focus{ | |
color: #030; | |
background: #690; | |
} | |
/** | |
transition-property: width, opacity, position, font-size | |
**/ |
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
<!-- content to be placed inside <body>…</body> --> | |
<body> | |
<br><br><br> | |
<a href="#" class="foo"> Transition me! </a> | |
</body> | |
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","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment