Skip to content

Instantly share code, notes, and snippets.

@fiinix
Created August 1, 2014 10:32
Show Gist options
  • Save fiinix/0b176a9ba38a96bc3f2d to your computer and use it in GitHub Desktop.
Save fiinix/0b176a9ba38a96bc3f2d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.12)
// Compass (v1.0.0.alpha.21)
// ----
// Silent placeholder, doesn't behave as expected, or I'm being daft.
%animated-shake {
@at-root {
@keyframes shake {
0%, 100% {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
}
animation-name: shake;
}
// Silent placeholder, behaves as expected.
%silent {
background:red;
}
@keyframes shake {
0%, 100% {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment