Skip to content

Instantly share code, notes, and snippets.

@Snugug
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save Snugug/3d41fa68ec05b1a42722 to your computer and use it in GitHub Desktop.

Select an option

Save Snugug/3d41fa68ec05b1a42722 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="foo">
Hello World
</div>
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
@keyframes rotate {
from { transform: rotate(0); }
to { transform: rotate(360); }
}
@keyframes opacity {
0% { opacity: .25;}
50% { opacity: 1; }
100% {opacity: .25; }
}
.foo {
animation: scale 5s infinite, opacity 2s infinite;
}
@keyframes rotate {
from {
transform: rotate(0);
}
to {
transform: rotate(360);
}
}
@keyframes opacity {
0% {
opacity: .25;
}
50% {
opacity: 1;
}
100% {
opacity: .25;
}
}
.foo {
animation: scale 5s infinite, opacity 2s infinite;
}
<div class="foo">
Hello World
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment