Skip to content

Instantly share code, notes, and snippets.

@Alexgalinier
Last active December 14, 2015 01:09
Embed
What would you like to do?
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