mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 17:45:17 +01:00
Merge pull request #373 from frasern/issue-293
Fixed #293 -- animations should only run when the `animated` class is used.
This commit is contained in:
commit
73375a830f
5 changed files with 10 additions and 4 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
@ -33,5 +33,4 @@
|
||||||
|
|
||||||
.bounceIn {
|
.bounceIn {
|
||||||
animation-name: bounceIn;
|
animation-name: bounceIn;
|
||||||
animation-duration: .75s;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,5 +16,4 @@
|
||||||
|
|
||||||
.bounceOut {
|
.bounceOut {
|
||||||
animation-name: bounceOut;
|
animation-name: bounceOut;
|
||||||
animation-duration: .75s;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,6 +16,5 @@
|
||||||
|
|
||||||
.flipOutX {
|
.flipOutX {
|
||||||
animation-name: flipOutX;
|
animation-name: flipOutX;
|
||||||
animation-duration: .75s;
|
|
||||||
backface-visibility: visible !important;
|
backface-visibility: visible !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,5 +17,4 @@
|
||||||
.flipOutY {
|
.flipOutY {
|
||||||
backface-visibility: visible !important;
|
backface-visibility: visible !important;
|
||||||
animation-name: flipOutY;
|
animation-name: flipOutY;
|
||||||
animation-duration: .75s;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue