Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanberliner/focustype
Useful data attributes to isolate focus events based on their origins.
https://github.com/ryanberliner/focustype
a11y accessibility accessible accessible-design css javascript keyboard mouse scss web-accessibility
Last synced: about 2 months ago
JSON representation
Useful data attributes to isolate focus events based on their origins.
- Host: GitHub
- URL: https://github.com/ryanberliner/focustype
- Owner: RyanBerliner
- License: mit
- Created: 2019-11-09T22:45:53.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-27T13:28:29.000Z (5 months ago)
- Last Synced: 2024-11-07T01:45:49.746Z (about 2 months ago)
- Topics: a11y, accessibility, accessible, accessible-design, css, javascript, keyboard, mouse, scss, web-accessibility
- Language: HTML
- Homepage: https://ryanberliner.com/focustype/
- Size: 239 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# focustype ![focustype](https://img.shields.io/npm/v/focustype)
**tl;dr** better looking, intentionally designed focus states for accessible websites
See it in action at [https://ryanberliner.com/focustype/](https://ryanberliner.com/focustype/)
## How to Use
If you are using npm, you can `npm i focustype`
Otherwise, you can use [jsDelivr](https://www.jsdelivr.com/package/npm/focustype) to reference the latest version from their CDN.
```
```
## Overview
This is focustype. It provides useful data attributes to isolate focus events based on their origins.
Every browser seems to focus elements under different circumstances. Don't believe me? Go click [these bootstrap buttons](https://getbootstrap.com/docs/4.3/components/buttons/) in different browsers and you'll see how the focus state shows in some browsers but not others. This is because the visual focus state uses the `:focus` selector, but different browsers focus the element differently on clicking, or tabbing through. This small javascript solution gives you insights into how an element received focus, so you can make the behavior look the same between all browsers under the exact scenarios you wish.
## Why Would You Need This?
Focus states are an important part of letting users know what part of your web page currently has focus. This is the case for almost all users of the web (even if you don't realize it), and even more so for those who navigate the web entirely by keyboard, jumping from element to element. You likely care about how your websites elements look for all users, and focustype helps you dial in your design under all circumstances. For mouse users, and keyboard users.
## Problems and Notes
### Isn't this `:focus-visible`?
Kinda. However, the current support for this is not great [(see support here)](https://caniuse.com/#search=%3Afocus-visible), and you don't get the additional insight about specific focus origins. Once/if `:focus-visible` has better support I can see use cases where focustype is overkill.
### Mixins
If you are using scss you may find the following mixins helpful.
```
@mixin key-only-focus {
&[data-focustype="key"]:focus {
@content;
}
}@mixin mouse-only-focus {
&[data-focustype="mouse"] {
@content;
}
}@mixin unknown-only-focus {
&[data-focustype="unknown"]:focus {
@content;
}
}
```### What if the client doesn't have javascript enabled?
Styles should be written such that the usability isn't dependent on javascript. focustype adds a class to the body `focustype-activated` when it is loaded. You can use this to your advantage.
### Form Inputs
I'd personally avoid using key only or mouse only focus styling on certain form inputs. In my opinion many users will start to fill out a form by clicking in, then tabbing through parts, then clicking again. It could be confusing to the user if elements have different looks.
### Testing
I've tested this in Chrome, Safari, Firefox on a Mac..... so if you are hoping for a solid solution make sure you test this stuff further. There are no guarantees of this working in all sceneries. LMK if you
find issues.