Sha256: 731e0860313501e8f5947762869e8b4a870c38de1d2773e7c573b9bf15847a5c
Contents?: true
Size: 1.35 KB
Versions: 16
Compression:
Stored size: 1.35 KB
Contents
// --------------------------------------------------------------------------- @include keyframes(bounceOut) { 0% { @include scale(1); } 25% { @include scale(0.95); } 50% { opacity: 1; @include scale(1.1); } 100% { opacity: 0; @include scale(0.3); } } // --------------------------------------------------------------------------- @include keyframes(bounceOutUp) { 0% { @include translateY(0); } 20% { opacity: 1; @include translateY(20px); } 100% { opacity: 0; @include translateY(-2000px); } } // --------------------------------------------------------------------------- @include keyframes(bounceOutDown) { 0% { @include translateY(0); } 20% { opacity: 1; @include translateY(-20px); } 100% { opacity: 0; @include translateY(2000px); } } // --------------------------------------------------------------------------- @include keyframes(bounceOutLeft) { 0% { @include translateX(0); } 20% { opacity: 1; @include translateX(20px); } 100% { opacity: 0; @include translateX(-2000px); } } // --------------------------------------------------------------------------- @include keyframes(bounceOutRight) { 0% { @include translateX(0); } 20% { opacity: 1; @include translateX(-20px); } 100% { opacity: 0; @include translateX(2000px); } }
Version data entries
16 entries across 16 versions & 5 rubygems