Skip to content

CSS: Disable CSS Animations

below css code, to disable any related to css animation

/*CSS transitions*/

 -o-transition-property: none !important;

 -moz-transition-property: none !important;

 -ms-transition-property: none !important;

 -webkit-transition-property: none !important;

 transition-property: none !important;

 /*CSS transforms*/

 -o-transform: none !important;

 -moz-transform: none !important;

 -ms-transform: none !important;

 -webkit-transform: none !important;

 transform: none !important;

 /*CSS animations*/

 -webkit-animation: none !important;

 -moz-animation: none !important;

 -o-animation: none !important;

 -ms-animation: none !important;

 animation: none !important;

credit : https://dev.webonomic.nl/how-to-disable-css-transforms-transistions-and-animations

Share

Comments are closed.