Sha256: 279098eb63424a0e23c562f3d10dbfccf83cc773caf2493d6c2fc9c0dd208486
Contents?: true
Size: 1.5 KB
Versions: 16
Compression:
Stored size: 1.5 KB
Contents
// --------------------------------------------------------------------------- @include keyframes(bounceIn) { 0% { opacity: 0; @include scale(0.3); } 50% { opacity: 1; @include scale(1.05); } 70% { @include scale(0.9); } 100% { @include scale(1); } } // --------------------------------------------------------------------------- @include keyframes(bounceInDown) { 0% { opacity: 0; @include translateY(-2000px); } 60% { opacity: 1; @include translateY(30px); } 80% { @include translateY(-10px); } 100% { @include translateY(0); } } // --------------------------------------------------------------------------- @include keyframes(bounceInUp) { 0% { opacity: 0; @include translateY(2000px); } 60% { opacity: 1; @include translateY(-30px); } 80% { @include translateY(10px); } 100% { @include translateY(0); } } // --------------------------------------------------------------------------- @include keyframes(bounceInRight) { 0% { opacity: 0; @include translateX(2000px); } 60% { opacity: 1; @include translateX(-30px); } 80% { @include translateX(10px); } 100% { @include translateX(0); } } // --------------------------------------------------------------------------- @include keyframes(bounceInLeft) { 0% { opacity: 0; @include translateX(-2000px); } 60% { opacity: 1; @include translateX(30px); } 80% { @include translateX(-10px); } 100% { @include translateX(0); } }
Version data entries
16 entries across 16 versions & 5 rubygems