Saturday, January 24, 2015

DISABLE CSS TRANSFORMS, TRANSISTIONS AND ANIMATIONS

* {
2 /*CSS transitions*/
3 -o-transition-property: none !important;
4 -moz-transition-property: none !important;
5 -ms-transition-property: none !important;
6 -webkit-transition-property: none !important;
7 transition-property: none !important;
8 /*CSS transforms*/
9 -o-transform: none !important;
10 -moz-transform: none !important;
11 -ms-transform: none !important;
12 -webkit-transform: none !important;
13 transform: none !important;
14 /*CSS animations*/
15 -webkit-animation: none !important;
16 -moz-animation: none !important;
17 -o-animation: none !important;
18 -ms-animation: none !important;
19 animation: none !important;
20}

No comments:

Post a Comment