focustype

tl;dr better looking, intentionally designed focus states for accessible websites

View on GitHub

How to Use

If you are using npm, you can npm i focustype

Otherwise, you can use jsDelivr to reference the latest version from their CDN.

<script async src="https://cdn.jsdelivr.net/npm/[email protected]/dist/focustype.js"></script>

Overview

This is focustype. It provides useful data attributes to isolate focus events based on their origins. Check out the GitHub repository for code.

Every browser seems to focus elements under different circumstances. Don't believe me? Go click these bootstrap buttons in different browsers and you'll see how the focus state shows in some browsers but not others. This is becuase 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 scenerios 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 relize 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.

Examples

Below are some links you can tab through.

If you are having trouble tabbing through a page on Firefox on Mac, you may need to enable it. This is how I did it.

And, for reference, when an item has a styled focus state it will look like this.

Traditional :focus Problem

You'll notice on Chrome, for example, that if I apply a style to :focus the elements will get this styling event on click. This is likely not your intention.

This is a link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link.

This is a focusable p.

Nested content in a focusable element.

This will focus programatically on mouseover.

Key Only Focus

Using focustype our selector can change to [data-focustype="key"]:focus. You'll now notice in all browsers the focus styling is only applied on key focus. (from tabbing through the page).

This is a link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link.

This is a focusable p.

Nested content in a focusable element.

This will focus programatically on mouseover.

Mouse Only Focus

You can also do this with mouse only focus. Its important to note though that this selector does not contain the :focus state, so its just [data-focustype="mouse"]. This is because some browsers, while putting focus on the element you click, don't actually put "focus" on the element. So, if we include the :focus state on this selector it wouldn't show up in these browsers.

This is a link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link.

This is a focusable p.

Nested content in a focusable element.

This will focus programatically on mouseover.

Unknown Only Focus

Focus can also be applied programically. In this case, the last example link has focus brought to it on hover. This gives the type unknown.

This is a link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link. And here is another link.

This is a focusable p.

Nested content in a focusable element.

This will focus programatically on mouseover.

Problems and Notes

Isn't this :focus-visible

Kinda. However, the current support for this is not great (see support here), 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 opion 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.