Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created October 8, 2012 22:23
Show Gist options
  • Save netsi1964/3855360 to your computer and use it in GitHub Desktop.
Save netsi1964/3855360 to your computer and use it in GitHub Desktop.
dependend animations
/**
* 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;
}
<div class="animated">
<div class="pct20">Hey 20%</div>
</div>
{"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