Mapping Mouse Position in CSS Demo

For his post How to Map Mouse Position in CSS on CSS-Tricks, Amit Sheen created this lovely demo: The demo does use CSS Custom Properties for the X/Y position of the mouse, but they’re not injected using JavaScript. Instead, Amit uses the same technique as used in CSS-Only Direction Aware Hover: capture the hover on […]


This content originally appeared on Bram.us and was authored by Bramus!

For his post How to Map Mouse Position in CSS on CSS-Tricks, Amit Sheen created this lovely demo:

The demo does use CSS Custom Properties for the X/Y position of the mouse, but they’re not injected using JavaScript. Instead, Amit uses the same technique as used in CSS-Only Direction Aware Hover: capture the hover on extra injected elements (here: 100 of them ?).

By means of a General Sibling Combinator he then passes the data of each cell — which knows its location in the grid — to the content.

.cell:nth-child(42):hover ~ .content {
  --positionX: 1;
  --positionY: 3;
}


This content originally appeared on Bram.us and was authored by Bramus!


Print Share Comment Cite Upload Translate Updates
APA

Bramus! | Sciencx (2021-03-02T23:10:39+00:00) Mapping Mouse Position in CSS Demo. Retrieved from https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/

MLA
" » Mapping Mouse Position in CSS Demo." Bramus! | Sciencx - Tuesday March 2, 2021, https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/
HARVARD
Bramus! | Sciencx Tuesday March 2, 2021 » Mapping Mouse Position in CSS Demo., viewed ,<https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/>
VANCOUVER
Bramus! | Sciencx - » Mapping Mouse Position in CSS Demo. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/
CHICAGO
" » Mapping Mouse Position in CSS Demo." Bramus! | Sciencx - Accessed . https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/
IEEE
" » Mapping Mouse Position in CSS Demo." Bramus! | Sciencx [Online]. Available: https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/. [Accessed: ]
rf:citation
» Mapping Mouse Position in CSS Demo | Bramus! | Sciencx | https://www.scien.cx/2021/03/02/mapping-mouse-position-in-css-demo/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.