1.4 KiB
1.4 KiB
Sibling fade
Fades out the siblings of a hovered item.
HTML
<div class="sibling-fade">
<span>Item 1</span>
<span>Item 2</span>
<span>Item 3</span>
<span>Item 4</span>
<span>Item 5</span>
<span>Item 6</span>
</div>
CSS
span {
padding: 0 1rem;
transition: opacity 0.2s;
}
.sibling-fade:hover span:not(:hover) {
opacity: 0.5;
}
Demo
Item 1
Item 2
Item 3
Item 4
Item 5
Item 6
<style>
.snippet-demo__sibling-fade {
cursor: default;
line-height: 2;
vertical-align: middle;
}
.snippet-demo__sibling-fade span {
padding: 1rem;
transition: opacity 0.2s;
}
.snippet-demo__sibling-fade:hover span:not(:hover) {
opacity: 0.5;
}
</style>
Explanation
transition: opacity 0.2sspecifies that changes to opacity will be transitioned over 0.2 seconds..sibling-fade:hover span:not(:hover)specifies that when the parent is hovered, select anyspanchildren that are not currently being hovered and change their opacity to0.5.
Browser support
✅ No caveats.