mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 09:38:28 +01:00
Move css properties to appropriate location (#761)
This commit is contained in:
parent
8dce1e03fd
commit
fb4313ad0c
6 changed files with 5 additions and 11 deletions
|
@ -6,14 +6,3 @@
|
|||
.animated.infinite {
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
.animated.hinge {
|
||||
animation-duration: 2s;
|
||||
}
|
||||
|
||||
.animated.flipOutX,
|
||||
.animated.flipOutY,
|
||||
.animated.bounceIn,
|
||||
.animated.bounceOut {
|
||||
animation-duration: .75s;
|
||||
}
|
||||
|
|
|
@ -32,5 +32,6 @@
|
|||
}
|
||||
|
||||
.bounceIn {
|
||||
animation-duration: .75s;
|
||||
animation-name: bounceIn;
|
||||
}
|
||||
|
|
|
@ -15,5 +15,6 @@
|
|||
}
|
||||
|
||||
.bounceOut {
|
||||
animation-duration: .75s;
|
||||
animation-name: bounceOut;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
}
|
||||
|
||||
.flipOutX {
|
||||
animation-duration: .75s;
|
||||
animation-name: flipOutX;
|
||||
backface-visibility: visible !important;
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
}
|
||||
|
||||
.flipOutY {
|
||||
animation-duration: .75s;
|
||||
backface-visibility: visible !important;
|
||||
animation-name: flipOutY;
|
||||
}
|
||||
|
|
|
@ -24,5 +24,6 @@
|
|||
}
|
||||
|
||||
.hinge {
|
||||
animation-duration: 2s;
|
||||
animation-name: hinge;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue