X: dim posts away from the cursor
Slightly dims every post except the one under the cursor so your eye focuses on one tweet at a time.
Code to copy
/* Dim tweets until hovered so the eye lands on one post at a time */
[data-testid="cellInnerDiv"] article {
opacity: 0.55;
transition: opacity 0.15s ease;
}
[data-testid="cellInnerDiv"] article:hover {
opacity: 1;
}
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's CSS panel and save — the effect appears instantly.
Rate this example
No ratings yet — be the first.