Sha256: 3c75ce39c9d1f2b3b894a80d2596b145ae0381849fbe9a4eb70ab4640adb3a32

Contents?: true

Size: 907 Bytes

Versions: 22

Compression:

Stored size: 907 Bytes

Contents

.animate-none {
  animation: none;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 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: 0.5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1); // scss-lint:disable all
  }
  50% {
    transform: translateY(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1); // scss-lint:disable all
  }
}

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
sass-zero-1.2.3 app/assets/stylesheets/sass-zero/utilities/_animation.scss
sass-zero-1.2.2 app/assets/stylesheets/sass-zero/utilities/_animation.scss
sass-zero-1.2.1 app/assets/stylesheets/sass-zero/utilities/_animation.scss
sass-zero-1.2.0 app/assets/stylesheets/sass-zero/utilities/_animation.scss
sass-zero-1.1.7 app/assets/stylesheets/sass-zero/utilities/_animation.scss
sass-zero-1.1.6 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.5 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.4 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.3 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.2 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.1 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.1.0 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.26 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.25 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.24 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.23 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.22 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.21 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.20 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-1.0.19 app/assets/stylesheets/sass-zero/utilities/animation.scss