Fixed #293 -- animations should only run when the `animated` class is used.

This commit is contained in:
Fraser Nevett 2015-03-12 18:24:18 +00:00
parent 8f548f80a3
commit 3b7735b689
5 changed files with 10 additions and 4 deletions

View File

@ -18,3 +18,13 @@ Copyright (c) 2015 Daniel Eden
.animated.hinge { .animated.hinge {
animation-duration: 2s; animation-duration: 2s;
} }
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
animation-duration: .75s;
}

View File

@ -33,5 +33,4 @@
.bounceIn { .bounceIn {
animation-name: bounceIn; animation-name: bounceIn;
animation-duration: .75s;
} }

View File

@ -16,5 +16,4 @@
.bounceOut { .bounceOut {
animation-name: bounceOut; animation-name: bounceOut;
animation-duration: .75s;
} }

View File

@ -16,6 +16,5 @@
.flipOutX { .flipOutX {
animation-name: flipOutX; animation-name: flipOutX;
animation-duration: .75s;
backface-visibility: visible !important; backface-visibility: visible !important;
} }

View File

@ -17,5 +17,4 @@
.flipOutY { .flipOutY {
backface-visibility: visible !important; backface-visibility: visible !important;
animation-name: flipOutY; animation-name: flipOutY;
animation-duration: .75s;
} }