Skip to content

Instantly share code, notes, and snippets.

@Alexgalinier
Last active December 14, 2015 01:09
Show Gist options
  • Save Alexgalinier/5003922 to your computer and use it in GitHub Desktop.
Save Alexgalinier/5003922 to your computer and use it in GitHub Desktop.
CSS: keyframe with prefixs
@-webkit-keyframes {name} {
0% { {from} }
100% { {to} }
}
@-moz-keyframes {name} {
0% { {from} }
100% { {to} }
}
@-o-keyframes {name} {
0% { {from} }
100% { {to} }
}
@keyframes {name} {
0% { {from} }
100% { {to} }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment