CSS Aural - Styles for Visual Accessibility
It is commonly used by blind people who have difficulty seeing or who do not have a screen for viewing. It is used, for example, by Screen Readers, which is all software that translates the content in a Sonara (and synthesized) way, instead of displaying it.
It is not a FRAMEWORK, but a CSS MODULE, designed for accessibility.
I believe that this already answers all aspects of the question and as for examples, follows:
h1, h2, h3, h4, h5, h6
{
voice-family: paul;
voice-stress: moderate;
cue-before: url(../audio/ping.wav);
voice-volume: medium 6dB;
}
p.heidi
{
voice-family: female;
voice-balance: left;
voice-pitch: high;
voice-volume: -6dB;
}
p.peter
{
voice-family: male;
voice-balance: right;
voice-rate: fast;
}
span.special
{
voice-volume: soft;
pause-after: strong;
}
...
<h1>I am Paul, and I speak headings.</h1>
<p class="heidi">Hello, I am Heidi.</p>
<p class="peter">
<span class="special">Can you hear me ?</span>
I am Peter.
</p>
The navigation on a site, made without visual aid, is done through jumps from element to element, so the CSS Aural allows styling how the user will read the element in focus, changing between male/female, defining the volume and etc.
Just complementing the Aspect of Tests/Screen Readers the DOSVOX is a Brazilian and Open Source initiative.
W3 documentation about CSS Aural and Speech: SOURCE
@Marconi didn’t understand it either, but you’ll know.
– viana
I don’t like negative responses without a comment on why it goes back to neutral!
– MoshMage
Good afternoon, I marked with -1 because I was using as Documentation a W3schools. You switched to a font that calls itself obsolete.
– Thiago Santos
@Marconi according to this W3 reference yes, the Aural CSS is obsolete. On their own page there is a note alerting people.
– viana
@Marconi I’m even looking for if there’s any substitute for this to help you, because honestly, in practice I’ve never seen anyone using.
– viana
@Marconi I think it’s very important that people care about this, because accessibility, not only in Brazil, but worldwide, is very bad. I was reading here that Facebook has created a tool for visually impaired people to "see" the images. I don’t know how, maybe some way to describe, of course, in audio format.
– viana
@Acklay Speaking of seeing the pictures, look at this question I recently did on the use of
alt
in tagsimgs
answered by bigown. This may be related to your comment!– Marconi
@Legal Marconi, here’s the story. http://www.techtudo.com.br/noticias/noticia/2015/10/facebook-development-tool_para-helpr-blindes-ver-imagens.html I take accessibility very seriously.
– viana