41 lines
514 B
SCSS
41 lines
514 B
SCSS
|
/*
|
||
|
* Owl Carousel - Animate Plugin
|
||
|
*/
|
||
|
.owl-carousel{
|
||
|
.animated {
|
||
|
-webkit-animation-duration: 1000ms;
|
||
|
animation-duration: 1000ms;
|
||
|
-webkit-animation-fill-mode: both;
|
||
|
animation-fill-mode: both;
|
||
|
}
|
||
|
.owl-animated-in {
|
||
|
z-index: 0;
|
||
|
}
|
||
|
.owl-animated-out {
|
||
|
z-index: 1;
|
||
|
}
|
||
|
.fadeOut {
|
||
|
-webkit-animation-name: fadeOut;
|
||
|
animation-name: fadeOut;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@-webkit-keyframes fadeOut {
|
||
|
0% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
@keyframes fadeOut {
|
||
|
0% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|