使用 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)