Trung BìnhCSS iconCSS

prefers-reduced-motion media query dùng khi nào?

Tôn trọng accessibility settings của user muốn giảm animations. Quan trọng cho users có vestibular disorders (chuyển động mạnh gây buồn nôn).

Best practice: dùng no-preference guard thay vì cắt toàn bộ animations:

css
@media (prefers-reduced-motion: no-preference) {
  .animated { animation: slideIn 0.3s ease; }
}

Hoặc giảm thay vì xóa hoàn toàn: animation-duration: 0.001ms để giữ logic nhưng không có visual motion.

Tránh pattern * { animation: none } quá aggressive — có thể ảnh hưởng UX cần thiết.

Xem toàn bộ CSS cùng filter theo level & chủ đề con.

Mở danh sách CSS