Sha256: 091c41a58f06cebb34e73295f3aa3b5ec4014d189dafeb2525c4e004fa6d50a5
Contents?: true
Size: 853 Bytes
Versions: 18
Compression:
Stored size: 853 Bytes
Contents
.animate-none { animation: none; } .animate-spin { animation: spin 1s linear infinite; } .animate-ping { animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite; } .animate-pulse { animation: pulse 2s cubic-bezier(.4, 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: .5; } } @keyframes bounce { 0%, 100% { transform: translateY(-25%); animationTimingFunction: cubic-bezier(0.8, 0, 1, 1); } 50% { transform: translateY(0); animationTimingFunction: cubic-bezier(0, 0, 0.2, 1); } }
Version data entries
18 entries across 18 versions & 1 rubygems