Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Last active August 18, 2017 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraVieira/2d707d190a4f64024b1f0883c2a74dc0 to your computer and use it in GitHub Desktop.
Save SaraVieira/2d707d190a4f64024b1f0883c2a74dc0 to your computer and use it in GitHub Desktop.
import { keyframes } from 'styled-components';
export const rotate = keyframes`
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
}
50% {
transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
}
100% {
transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment