What fresh hell is THIS now? - Patrick Lauke
[hampelusken] That sounds awesome. I'd go for Jaws, since we want to show how it works for most users, not what rich it teams with MacBooks experience ;)
I'm in a project that's building a browser plugin that will simulate different disabilities, like motor, cognition, dyslexia etc. www.funkify.org. Maybe we could work together on the screenreader simulator if you're interested? Or integrate what you build into the simulator to spread it?
i've been playing with the idea of making a website which simulates a screen reader where you can navigate around a hidden page while simple instructions (how to use the screen reader) are displaying on screen in order to educate people—primarily web developers—what it's like to use a screen reader. I couldn't find anything like it recent online. One thing I'm stuck with is which screen reader to simulate—while JAWS seems to be the most widely used, most front-end developers I've met seem to use Macs, so VoiceOver might be a better choice for them (it's also what I'm most familiar with - no idea how to navigate using JAWS). Anyone have any thoughts?
[donnabungard] Odd question for ya's.
Someone came to me saying that the H-Tags on a site only had room visually for x-many characters so titles such as More Information About Cats was abbreviated to More Info. Obviously the later isn't very descriptive for non-sighted users.
The question is, is there a best practice methodology to provide additional heading information for non sighted users without compromising the sighted UX?
[karlgroves] “only had room visually for x-many characters”
That’s not true. You can wrap all of the text on a site with an H1 if you wanted to
[donnabungard] I understand that H1's etc don't have a max-character count but in the design they need something short and sweet for visual balance.
He's trying to find a balance point between being Accessible and not telling a client that they need to completely rethink 80% of the headers on a large site.
He's trying to find a balance point to help him guide the marketing team.
My gut reaction was "well it's on the writers" but he was wondering if there was another way to add more valuable info for non-sighted users without layout / site-wide complete re-writes.
Am I being clear?
[karlgroves] @donnabungard something like this?
<h2 id="topicHeading1">Topic Heading 1</h2> <p>Lorem ipsum dolor sit amet, consectetur adipiscing 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 esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p> <a href="/path/to/article" aria-labelledby="blabel1 topicHeading1 "> <span id="articlelabel1">More Info</span> </a>
prefers-reduced-motion
has been introduced by Apple, you could potentially use the media query for OSX and iOS users to opt out https://webkit.org/blog/7551/responsive-design-for-motion/