Navigation via keyboard

1

I started to develop a project, which has some navigation needs via keyboard, as it is a municipal site, in the case it should be accessible for the disabled as well.

I'm a little lost in how to start, or by what to search, I initially have the following menu:

Ididthefollowingforthemenu:

<navclass="nav-access">
    <a href="#content" accesskey="1">Ir para o conteúdo</a>
    <a href="#nav" accesskey="2">Ir para o menu</a>
    <a href="#contrast" accesskey="3">Alto Contraste</a>
</nav>

What should be the navigation functionality for keyboard numbers, feature suggestions? or techniques for this type of navigation.

    
asked by anonymous 24.09.2014 / 20:52

1 answer

1

You can use the same accesskey, but you need to show the user how to access it, either by audio or some caption explaining how to use it in each browser / OS.

link

    
24.09.2014 / 21:42