Skip to content

Commit b3fae9f

Browse files
committed
Remove -ms- prefixes
Since IE10 dropped the animation, transform, and transition prefixes, and no stable release was made with them, we can safely drop the prefixes, too. Cutting a good 20% off the file sizes!
1 parent 13e1439 commit b3fae9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+4
-1613
lines changed

animate.css

Lines changed: 3 additions & 775 deletions
Large diffs are not rendered by default.

animate.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/bounce.css

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
60% {-moz-transform: translateY(-15px);}
1111
}
1212

13-
@-ms-keyframes bounce {
14-
0%, 20%, 50%, 80%, 100% {-ms-transform: translateY(0);}
15-
40% {-ms-transform: translateY(-30px);}
16-
60% {-ms-transform: translateY(-15px);}
17-
}
18-
1913
@-o-keyframes bounce {
2014
0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
2115
40% {-o-transform: translateY(-30px);}
@@ -30,7 +24,6 @@
3024
.bounce {
3125
-webkit-animation-name: bounce;
3226
-moz-animation-name: bounce;
33-
-ms-animation-name: bounce;
3427
-o-animation-name: bounce;
3528
animation-name: bounce;
3629
}

source/bounceIn.css

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,6 @@
3838
}
3939
}
4040

41-
@-ms-keyframes bounceIn {
42-
0% {
43-
opacity: 0;
44-
-ms-transform: scale(.3);
45-
}
46-
47-
50% {
48-
opacity: 1;
49-
-ms-transform: scale(1.05);
50-
}
51-
52-
70% {
53-
-ms-transform: scale(.9);
54-
}
55-
56-
100% {
57-
-ms-transform: scale(1);
58-
}
59-
}
60-
6141
@-o-keyframes bounceIn {
6242
0% {
6343
opacity: 0;
@@ -101,7 +81,6 @@
10181
.bounceIn {
10282
-webkit-animation-name: bounceIn;
10383
-moz-animation-name: bounceIn;
104-
-ms-animation-name: bounceIn;
10584
-o-animation-name: bounceIn;
10685
animation-name: bounceIn;
10786
}

source/bounceInDown.css

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,6 @@
3838
}
3939
}
4040

41-
@-ms-keyframes bounceInDown {
42-
0% {
43-
opacity: 0;
44-
-ms-transform: translateY(-2000px);
45-
}
46-
47-
60% {
48-
opacity: 1;
49-
-ms-transform: translateY(30px);
50-
}
51-
52-
80% {
53-
-ms-transform: translateY(-10px);
54-
}
55-
56-
100% {
57-
-ms-transform: translateY(0);
58-
}
59-
}
60-
6141
@-o-keyframes bounceInDown {
6242
0% {
6343
opacity: 0;
@@ -101,7 +81,6 @@
10181
.bounceInDown {
10282
-webkit-animation-name: bounceInDown;
10383
-moz-animation-name: bounceInDown;
104-
-ms-animation-name: bounceInDown;
10584
-o-animation-name: bounceInDown;
10685
animation-name: bounceInDown;
10786
}

source/bounceInLeft.css

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,6 @@
3838
}
3939
}
4040

41-
@-ms-keyframes bounceInLeft {
42-
0% {
43-
opacity: 0;
44-
-ms-transform: translateX(-2000px);
45-
}
46-
47-
60% {
48-
opacity: 1;
49-
-ms-transform: translateX(30px);
50-
}
51-
52-
80% {
53-
-ms-transform: translateX(-10px);
54-
}
55-
56-
100% {
57-
-ms-transform: translateX(0);
58-
}
59-
}
60-
6141
@-o-keyframes bounceInLeft {
6242
0% {
6343
opacity: 0;
@@ -101,7 +81,6 @@
10181
.bounceInLeft {
10282
-webkit-animation-name: bounceInLeft;
10383
-moz-animation-name: bounceInLeft;
104-
-ms-animation-name: bounceInLeft;
10584
-o-animation-name: bounceInLeft;
10685
animation-name: bounceInLeft;
10786
}

source/bounceInRight.css

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,6 @@
3838
}
3939
}
4040

41-
@-ms-keyframes bounceInRight {
42-
0% {
43-
opacity: 0;
44-
-ms-transform: translateX(2000px);
45-
}
46-
47-
60% {
48-
opacity: 1;
49-
-ms-transform: translateX(-30px);
50-
}
51-
52-
80% {
53-
-ms-transform: translateX(10px);
54-
}
55-
56-
100% {
57-
-ms-transform: translateX(0);
58-
}
59-
}
60-
6141
@-o-keyframes bounceInRight {
6242
0% {
6343
opacity: 0;
@@ -101,7 +81,6 @@
10181
.bounceInRight {
10282
-webkit-animation-name: bounceInRight;
10383
-moz-animation-name: bounceInRight;
104-
-ms-animation-name: bounceInRight;
10584
-o-animation-name: bounceInRight;
10685
animation-name: bounceInRight;
10786
}

source/bounceInUp.css

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,6 @@
3636
-moz-transform: translateY(0);
3737
}
3838
}
39-
@-ms-keyframes bounceInUp {
40-
0% {
41-
opacity: 0;
42-
-ms-transform: translateY(2000px);
43-
}
44-
45-
60% {
46-
opacity: 1;
47-
-ms-transform: translateY(-30px);
48-
}
49-
50-
80% {
51-
-ms-transform: translateY(10px);
52-
}
53-
54-
100% {
55-
-ms-transform: translateY(0);
56-
}
57-
}
5839

5940
@-o-keyframes bounceInUp {
6041
0% {
@@ -99,7 +80,6 @@
9980
.bounceInUp {
10081
-webkit-animation-name: bounceInUp;
10182
-moz-animation-name: bounceInUp;
102-
-ms-animation-name: bounceInUp;
10383
-o-animation-name: bounceInUp;
10484
animation-name: bounceInUp;
10585
}

source/bounceOut.css

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,6 @@
3838
}
3939
}
4040

41-
@-ms-keyframes bounceOut {
42-
0% {
43-
-ms-transform: scale(1);
44-
}
45-
46-
25% {
47-
-ms-transform: scale(.95);
48-
}
49-
50-
50% {
51-
opacity: 1;
52-
-ms-transform: scale(1.1);
53-
}
54-
55-
100% {
56-
opacity: 0;
57-
-ms-transform: scale(.3);
58-
}
59-
}
60-
6141
@-o-keyframes bounceOut {
6242
0% {
6343
-o-transform: scale(1);
@@ -101,7 +81,6 @@
10181
.bounceOut {
10282
-webkit-animation-name: bounceOut;
10383
-moz-animation-name: bounceOut;
104-
-ms-animation-name: bounceOut;
10584
-o-animation-name: bounceOut;
10685
animation-name: bounceOut;
10786
}

source/bounceOutLeft.css

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,6 @@
3030
}
3131
}
3232

33-
@-ms-keyframes bounceOutLeft {
34-
0% {
35-
-ms-transform: translateX(0);
36-
}
37-
38-
20% {
39-
opacity: 1;
40-
-ms-transform: translateX(20px);
41-
}
42-
43-
100% {
44-
opacity: 0;
45-
-ms-transform: translateX(-2000px);
46-
}
47-
}
48-
4933
@-o-keyframes bounceOutLeft {
5034
0% {
5135
-o-transform: translateX(0);
@@ -81,7 +65,6 @@
8165
.bounceOutLeft {
8266
-webkit-animation-name: bounceOutLeft;
8367
-moz-animation-name: bounceOutLeft;
84-
-ms-animation-name: bounceOutLeft;
8568
-o-animation-name: bounceOutLeft;
8669
animation-name: bounceOutLeft;
8770
}

0 commit comments

Comments
 (0)