_animate.scss 323B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Owl Carousel - Animate Plugin
  3. */
  4. .owl-carousel{
  5. .animated {
  6. animation-duration: 1000ms;
  7. animation-fill-mode: both;
  8. }
  9. .owl-animated-in {
  10. z-index: 0;
  11. }
  12. .owl-animated-out {
  13. z-index: 1;
  14. }
  15. .fadeOut {
  16. animation-name: fadeOut;
  17. }
  18. }
  19. @keyframes fadeOut {
  20. 0% {
  21. opacity: 1;
  22. }
  23. 100% {
  24. opacity: 0;
  25. }
  26. }