summaryrefslogtreecommitdiff
path: root/src/sass/owl-carousel2/_animate.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/sass/owl-carousel2/_animate.scss')
-rw-r--r--src/sass/owl-carousel2/_animate.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/sass/owl-carousel2/_animate.scss b/src/sass/owl-carousel2/_animate.scss
new file mode 100644
index 0000000..696d93c
--- /dev/null
+++ b/src/sass/owl-carousel2/_animate.scss
@@ -0,0 +1,28 @@
+/*
+ * Owl Carousel - Animate Plugin
+ */
+.owl-carousel{
+ .animated {
+ animation-duration: 1000ms;
+ animation-fill-mode: both;
+ }
+ .owl-animated-in {
+ z-index: 0;
+ }
+ .owl-animated-out {
+ z-index: 1;
+ }
+ .fadeOut {
+ animation-name: fadeOut;
+ }
+}
+
+@keyframes fadeOut {
+ 0% {
+ opacity: 1;
+ }
+
+ 100% {
+ opacity: 0;
+ }
+}