Animations can make people sick, or worse! By adding animation toggles and listening in to the user's system preference for reducing motion on OSX and iOS, we can give them more control over our interfaces. Animation can be a safety issue; let's do s…
ARIA 为Web app提供满足用户不同需求的解决方案.建设起用户和软件之间的桥梁. 新的HTML5标准中增加 aria-* 的标签属性,全称Accessible Rich Internet Application.与role标签属性配合使用. role属性表示一个非标准的tag的实际作用.比如用div做button,那么设置div 的 role=“button”,辅助工具就可以认出这实际上是个button.而aria-*的作用就是描述这个tag在可视化的情境中的具体信息. 最简单的应用比如,…
Learn how to create a modal dialog with accessible keyboard and screen reader mechanics using the native HTML5 dialog element and experimental inert attribute (with polyfills) and JavaScript focus management. We'll explore how to make a DIV or non-mo…
转自:http://angryant.com/2014/03/07/Moving-in-Unity/ ,详细描述了物体在unity中移动的几种方式,并且给出了代码描述,对加深对Unity理解很有帮助,谢谢AngryAnt .我用我粗陋的英文水平进行简单的翻译,望谅解. Introduction Moving something around on the screen in Unity is really not that hard. The point of this post is ther…
关于pop-up被blocked的问题 首先 这个pop-up的功能叫 popup blocker , 它是浏览器(包括ff, chrome等) 自身 所内置 的一个功能, 不是 安装的外部 插件/或扩展. 所以 你即使禁用 ff的所有的 外置插件和扩展 都不会有用的 这个popup-blocker 的设置,是在 preferences中, 通常在 privacy 或者 security 或 contents中, 比如 ff就是在 content中, 有一个专门的设置 "Pop-ups Bloc…
标签 更语义化标签 header标签 nav标签 section标签 article标签 aside标签 widget标签 footer标签 为什么要有语义化标签 能够便于开发者阅读和写出更优雅的代码,代码如诗 同时让浏览器或是网络爬虫可以很好地解析,从而更好分析其中的内容 更好地搜索引擎优化 切记:HTML的职责是描述一块内容是什么(或其意义)而不是它长的什么样子,它的外观应该由CSS来决定. 应用程序标签 [datalist(数据列表)] datalist数据列表的呈现需要载体 <input…
1.概念 animation-timing-function是规定动画的速度曲线,一般使用的是cubic-bezier() 控制动画曲线的,属性值一般有ease/ease-in/ease-out等,而steps可以控制动画被分成多少个部分进行. 2.steps( n , [start | end ] )函数 参数一 :将动画分为n等份,动画平均地运行 参数二 :️ start 从动画的开头开始运行:保留下一帧状态(播完当前帧就保留下一帧的状态),直到这段动画时间结束. ️ end(默认):从动画…
What's in a name? In this lesson, I'll explain the concept of naming interactive elements for screen reader users, including forms, buttons, and links. You'll learn how to debug accessible names and descriptions using the Chrome Accessibility Develop…
Here we use HTML and CSS to create a stylish yet semantic tooltip on a form input. I am using aria-describedby to create a relationship with the input and the tooltip. Then I use CSS to style the tooltip and control when it appears or disappears both…
This technique should apply to both normal video (consequtive sequences of pictures of real world) and animations (sequences of images drawn by human or generated by computer) This technique is supposed to perform better in lossy compression and by d…