我可以让我的网站仅使用辅助技术(VoiceOver/JAWS)向用户朗读文本吗?
我想让我的网站简要地向盲人用户朗读一些内容,从而为他们提供一些帮助。这可能吗?
I would like to provide a bit of assistance to blind users by having my website read something to them, briefly. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提供将使用屏幕阅读器读取给用户(但不会向视力正常的用户显示)的内容的一种方法是使用 CSS 定位内容,使其位于屏幕外。
例如:
在CSS中:
在HTML中:
请参阅隐藏文本的技术(位于WebAIM)了解更多信息。
One way you can provide content that will be read to users using a screen reader (but not shown to sighted users) is by positioning the content using CSS such that it is offscreen.
E.g. Something like:
In CSS:
In your HTML:
See Techniques for hiding text (at WebAIM) for more info.
这是一项正在进行中的网络技术。我知道的一个是 Google Text-To-Speech,但它需要 Html 5 才能播放,无需点击/下载。参考:http://weston.ruter.net/projects/google-tts/
This is a web-technology in progress. One I know of is Google Text-To-Speech, but it requires Html 5 to play without clicking/download. Ref: http://weston.ruter.net/projects/google-tts/