Disable All CSS Animations

Disable all CSS animations.

  1. /* ==UserStyle==
  2. @name Disable All CSS Animations
  3. @namespace url(http://www.w3.org/1999/xhtml);
  4. @version 1.0.0
  5. @description Disable all CSS animations.
  6. @license unlicense
  7. ==/UserStyle== */
  8.  
  9.  
  10. *, *:before, *:after {
  11. /*CSS transitions*/
  12. -o-transition-property: none !important;
  13. -moz-transition-property: none !important;
  14. -ms-transition-property: none !important;
  15. -webkit-transition-property: none !important;
  16. transition-property: none !important;
  17.  
  18. /*CSS transforms*/
  19. -o-transform: none !important;
  20. -moz-transform: none !important;
  21. -ms-transform: none !important;
  22. -webkit-transform: none !important;
  23. transform: none !important;
  24.  
  25. /*CSS animations*/
  26. -webkit-animation: none !important;
  27. -moz-animation: none !important;
  28. -o-animation: none !important;
  29. -ms-animation: none !important;
  30. animation: none !important;
  31. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址