Sha256: 6f3a159a9ba092290400f069d2a07d46461cbd08c7b7f88e8c6295f79298d5ad
Contents?: true
Size: 1.54 KB
Versions: 16
Compression:
Stored size: 1.54 KB
Contents
// --------------------------------------------------------------------------- @include keyframes(rotateOut) { 0% { @include transform-origin(center center); @include rotate(0); opacity: 1; } 100% { @include transform-origin(center center); @include rotate(200deg); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(rotateOutDownLeft) { 0% { @include transform-origin(left bottom); @include rotate(0); opacity: 1; } 100% { @include transform-origin(left bottom); @include rotate(90deg); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(rotateOutUpLeft) { 0% { @include transform-origin(left bottom); @include rotate(0); opacity: 1; } 100% { @include transform-origin(left bottom); @include rotate(-90deg); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(rotateOutDownRight) { 0% { @include transform-origin(right bottom); @include rotate(0); opacity: 1; } 100% { @include transform-origin(right bottom); @include rotate(-90deg); opacity: 0; } } // --------------------------------------------------------------------------- @include keyframes(rotateOutUpRight) { 0% { @include transform-origin(right bottom); @include rotate(0); opacity: 1; } 100% { @include transform-origin(right bottom); @include rotate(90deg); opacity: 0; } }
Version data entries
16 entries across 16 versions & 5 rubygems