Sha256: d70673963f584b778e5764505a44e55b9c66b933f6fbd786cd265476e9e50274
Contents?: true
Size: 554 Bytes
Versions: 39
Compression:
Stored size: 554 Bytes
Contents
/* * Owl Carousel - Animate Plugin */ .owl-carousel .animated { -webkit-animation-duration: 1000ms; animation-duration: 1000ms; -webkit-animation-fill-mode: both; animation-fill-mode: both; } .owl-carousel .owl-animated-in { z-index: 0; } .owl-carousel .owl-animated-out { z-index: 1; } .owl-carousel .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; } }
Version data entries
39 entries across 39 versions & 1 rubygems