No Mouse Days
Ever wanted a package that disables the mouse cursor one day a week so you can test keyboard accessibility as a team? No? Well here you go anyway.
This package can be installed into a modern JavaScript app to inject a CSS styling developer tool that disables the mouse cursor, with a banner to notify developers of its use. It's intended to encourage development of better keyboard support through regular browser testing (you are testing, aren't you?).
Read about No Mouse Days on the Accessibility Project: https://www.a11yproject.com/posts/2020-10-15-no-mouse-days
Prerequisites
- Node.js
- npm
How to use
- Install the package
npm install no-mouse-days --save-dev
- Import the package into your project for all times
- Import and conditionally apply it in development, if you want
if processenvNODE_ENV === 'development' import"no-mouse-days"
- Or apply it one day of the week, e.g. on Mondays
let date = let dayOfWeek = date if dayOfWeek === 1 import"no-mouse-days"
Example
This project includes a small example that you can use to test the No Mouse Days script locally in a browser.
Go into the example directory and install dependencies:
cd example
npm start
With a server successfully running, you can then visit the provided localhost URL such as http://localhost:1234
.
You can also view the example on GitHub pages: https://marcysutton.github.io/no-mouse-days/example/index.html