Created
October 8, 2012 22:23
-
-
Save netsi1964/3855360 to your computer and use it in GitHub Desktop.
dependend animations
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
/** | |
* dependend animations | |
*/ | |
@keyframes "slide" { | |
0% { | |
width: 10%; | |
} | |
100% { | |
width: 100%; | |
} | |
} | |
.animated { | |
height: 3em; | |
background-color: red; | |
animation: slide 5s infinite; | |
} | |
.animated>*:before {outline: solid 3px; position: relative; z-index: 10; width: 12em; height: 3em; content: "test";} | |
.animated[width*="2"] .pct20 { | |
background-color: yellow; | |
display: block; | |
} | |
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="animated"> | |
<div class="pct20">Hey 20%</div> | |
</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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment