mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-18 01:50:36 +01:00
30 lines
490 B
CSS
30 lines
490 B
CSS
@charset "UTF-8";
|
|
/*!
|
|
Animate.css - http://daneden.me/animate
|
|
Licensed under the MIT license - http://opensource.org/licenses/MIT
|
|
|
|
Copyright (c) 2015 Daniel Eden
|
|
*/
|
|
|
|
.animated {
|
|
animation-duration: 1s;
|
|
animation-fill-mode: both;
|
|
}
|
|
|
|
.animated.infinite {
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
.animated.hinge {
|
|
animation-duration: 2s;
|
|
}
|
|
|
|
.animated.bounceIn,
|
|
.animated.bounceOut {
|
|
animation-duration: .75s;
|
|
}
|
|
|
|
.animated.flipOutX,
|
|
.animated.flipOutY {
|
|
animation-duration: .75s;
|
|
}
|