mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 09:38:28 +01:00
Fixed #293 -- animations should only run when the animated
class is used.
This commit is contained in:
parent
8f548f80a3
commit
3b7735b689
5 changed files with 10 additions and 4 deletions
|
@ -18,3 +18,13 @@ Copyright (c) 2015 Daniel Eden
|
|||
.animated.hinge {
|
||||
animation-duration: 2s;
|
||||
}
|
||||
|
||||
.animated.bounceIn,
|
||||
.animated.bounceOut {
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
||||
.animated.flipOutX,
|
||||
.animated.flipOutY {
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
|
|
@ -33,5 +33,4 @@
|
|||
|
||||
.bounceIn {
|
||||
animation-name: bounceIn;
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
|
|
@ -16,5 +16,4 @@
|
|||
|
||||
.bounceOut {
|
||||
animation-name: bounceOut;
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
|
|
@ -16,6 +16,5 @@
|
|||
|
||||
.flipOutX {
|
||||
animation-name: flipOutX;
|
||||
animation-duration: .75s;
|
||||
backface-visibility: visible !important;
|
||||
}
|
||||
|
|
|
@ -17,5 +17,4 @@
|
|||
.flipOutY {
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipOutY;
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue