Skip to content

Instantly share code, notes, and snippets.

@daybrush
Created November 20, 2018 07:43
Show Gist options
  • Save daybrush/8bf608614c40ec1a996d2771c6e51b1b to your computer and use it in GitHub Desktop.
Save daybrush/8bf608614c40ec1a996d2771c6e51b1b to your computer and use it in GitHub Desktop.
<style>
/* CSS */
.selector {
animation-name: a;
animation-duration: 3s;
}
@keyframes a {
0% {
left: 0%;
}
100% {
left: 100%;
}
}
</style>
<script>
/* Scene.js */
new Scene({
".selector": {
0: {
left: "0%",
},
3: {
left: "100%",
},
}
}).playCSS();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment