Sha256: 3c75ce39c9d1f2b3b894a80d2596b145ae0381849fbe9a4eb70ab4640adb3a32
Contents?: true
Size: 907 Bytes
Versions: 22
Compression:
Stored size: 907 Bytes
Contents
.animate-none { animation: none; } .animate-spin { animation: spin 1s linear infinite; } .animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } .animate-bounce { animation: bounce 1s infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes ping { 0% { transform: scale(1); opacity: 1; } 75%, 100% { transform: scale(2); opacity: 0; } } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } @keyframes bounce { 0%, 100% { transform: translateY(-25%); animationTimingFunction: cubic-bezier(0.8, 0, 1, 1); // scss-lint:disable all } 50% { transform: translateY(0); animationTimingFunction: cubic-bezier(0, 0, 0.2, 1); // scss-lint:disable all } }
Version data entries
22 entries across 22 versions & 1 rubygems