Sha256: fdcaa318244591a8b081fd3ea16a6d5a2da6b649b3257cebec4443b4cf57aefe
Contents?: true
Size: 1.96 KB
Versions: 16
Compression:
Stored size: 1.96 KB
Contents
// --------------------------------------------------------------------------- @include keyframes(fadeOut) { 0% { opacity: 1; } 100% { opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutUp) { 0% { @include translateY(0); opacity: 1; } 100% { @include translateY(-20px); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutDown) { 0% { @include translateY(0); opacity: 1; } 100% { @include translateY(20px); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutRight) { 0% { @include translateX(0); opacity: 1; } 100% { @include translateX(20px); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutLeft) { 0% { @include translateX(0); opacity: 1; } 100% { @include translateX(-20px); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutUpBig) { 0% { @include translateY(0); opacity: 1; } 100% { @include translateY(-2000px); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(fadeOutDownBig) { 0% { opacity: 1; @include translateY(0); } 100% { opacity: 0; @include translateY(2000px); } } // --------------------------------------------------------------------------- @include keyframes(fadeOutRightBig) { 0% { opacity: 1; @include translateX(0); } 100% { opacity: 0; @include translateX(2000px); } } // --------------------------------------------------------------------------- @include keyframes(fadeOutLeftBig) { 0% { opacity: 1; @include translateX(0); } 100% { opacity: 0; @include translateX(-2000px); } }
Version data entries
16 entries across 16 versions & 5 rubygems