Sha256: fd899b3d6bcbe164162d7daf1998dfd5f9d47f46b88ebbdcd0773ae299f69bb7
Contents?: true
Size: 514 Bytes
Versions: 39
Compression:
Stored size: 514 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-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; } }
Version data entries
39 entries across 39 versions & 1 rubygems