Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 28, 2020 04:05 am GMT

Why "Skip Nav" Link is important!

A little while back, I'd the opportunity to work for accessibility implementation. one of my colleague he is a11y expert asked me to implement SkipNav for the page. The term "Skip Navigation" links are completely new for me and I've come up with a decent implementation that might be useful to everyone who cares about accessibility and usability. In this article, I'd like to discuss what is the problem without Skip Navigation links and how to build a Skip Navigation links for our website or application.

Problem:

Take a glance at https://www.nytimes.com/ for a minute, see how many links present in the header, sidebar, footer etc..,?

The main content is not usually the first thing on a web page. Keyboard and screen reader users generally must navigate a long list of navigation links, sub-lists of links, corporate icons, site searches, and other elements before ever arriving at the main content

  1. How to navigate to the main content without visiting all header navigation links?

  2. How to avoid visiting all the links for every page when navigating to another page.

The solution is "Skip Navigation" Links

Solution:

Generally, skip nav links are placed first or second links of the website so that users can easily navigate to the main content or desired section easily in a few tabbing. we might have seen many different approaches to solve the problem but I see below two-approach are used widely

  1. Providing visible links at the top of the page
  2. Making the link invisible until it receives keyboard focus

We'll talk about the 2nd approach and its implementation.

Let's see how https://www.nytimes.com/ solved this problem visually.

a11y skip nav link

As you can see in the clip, showing the skip nav link when the link receives the keyboard focus.

That's cool. Now see how user navigates to the site to index section of the site which declared way down in the site.

a11y skip nav link2

Let's implement the same functionality with the help of CSS and React.

Here we're controlling link toggle logic only in CSS through :focus pseudo selector like below, we are hiding the element normally then we'll show link in the screen only when the link element receives the focus. Note that we are not using display: none or visibility: hidden these make it inaccessible, Technically those types of elements (applied display: none and visibility: hidden) are not part of Accessibility tree. Hence we are using clip CSS properties.

.skip-nav-link {    border: 0;    clip: rect(0 0 0 0);    height: 1px;    margin: -1px;    overflow: hidden;    padding: 0;    position: absolute;    width: 1px;}.skip-nav-link:focus {    background: white;    clip: auto;    height: auto;    left: 10px;    padding: 1rem;    position: fixed;    top: 0px;    width: auto;    z-index: 1001;}

React implementation is dead simple and self-explanatory too. These 2 component does the job better SkipNavLink and SkipNavContent

export const SkipNavLink = ({ id, children = 'Skip to content', ...props }) => {  return (    <a {...props} href={`#${id}`} className="skip-nav-link">      {children}    </a>  );};export const SkipNavContent = ({ id, ...props }) => {  return <div id={id} {...props} />;};

Here is the usage of components

...<SkipNavContent id="main-content">    <main>        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod        tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo        consequat. Duis aute irure dolor in reprehenderit in voluptate velit ease    </main></SkipNavContent>...ReactDOM.createPortal(    <React.Fragment>        <SkipNavLink id="main-content">            Skip to main        </SkipNavLink>        <SkipNavLink id="sitemap-links">            Skip to sitemap        </SkipNavLink>    </React.Fragment>,    document.getElementById('skip-links-root')!)

To get some rough ideas on how laid out our HTML page.

<body>    <div class="wrapper">        <div id="skip-links-root">            <!-- Skip Nav links -->        </div>        <header>            <nav>                <!-- Nav links -->            </nav>        </header>        <div id="root">            <!-- React content goes here -->        </div>    </div></body>

Just take a moment to think about how tiny changes improved the user experience a lot better.

That's it.

Happy Tabbing !

Reference:

https://webaim.org/techniques/skipnav/


Original Link: https://dev.to/rajajaganathan/why-skip-nav-link-is-important-14bc

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To