小编Cru*_*ezz的帖子

使用 3 秒 CSS 过渡移动屏幕上的元素是否符合 ADA 标准?

使用 CSS 转换将文本从屏幕外移动到屏幕上的某个位置是否符合 ADA(美国残疾人法案)的要求?

h1 {
      text-align: center;
      position: relative;
      animation: heading;
      animation-duration: 3s;
      animation-fill-mode: forwards;
    }
@keyframes heading {
      0% {top: -50px;}
      100% {top: 30vh;}
}
Run Code Online (Sandbox Code Playgroud)

https://codepen.io/KuanaxBon/full/OJVLOmm

html css accessibility

3
推荐指数
1
解决办法
65
查看次数

标签 统计

accessibility ×1

css ×1

html ×1