Sha256: 091c41a58f06cebb34e73295f3aa3b5ec4014d189dafeb2525c4e004fa6d50a5

Contents?: true

Size: 853 Bytes

Versions: 18

Compression:

Stored size: 853 Bytes

Contents

.animate-none {
  animation: none;
}

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

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

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

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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
sass-zero-1.0.0 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.58 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.57 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.56 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.55 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.54 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.53 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.52 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.51 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.50 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.49 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.48 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.47 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.46 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.45 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.44 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.43 app/assets/stylesheets/sass-zero/utilities/animation.scss
sass-zero-0.0.42 app/assets/stylesheets/sass-zero/utilities/animation.scss