Skip to content

Instantly share code, notes, and snippets.

@JakobTischler
Created December 19, 2011 17:16
Show Gist options
  • Save JakobTischler/1498026 to your computer and use it in GitHub Desktop.
Save JakobTischler/1498026 to your computer and use it in GitHub Desktop.
Untitled
div { transition:all 0.5s; }
.container{width:200px;}
.box { opacity:0.666667; width: 200px; height: 200px; background: red; margin-bottom: 20px; cursor: pointer;}
.container:hover .box:hover {
opacity:1;
}
.container:hover .box:not(:hover) {
opacity: .333333;
}
<div class="container">
<div class="box">sample</div>
<div class="box">sample</div>
<div class="box">sample</div>
</div>
{"page":"css","view":"split-vertical"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment