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.