Last active
June 2, 2019 07:46
-
-
Save daybrush/ccdfb206282ee46332938bd960b24dbf to your computer and use it in GitHub Desktop.
keyframes with scene.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| new Scene({ | |
| ".animte": { | |
| 0: { | |
| left: "0%", | |
| }, | |
| 2: { | |
| left: "50%", | |
| }, | |
| 4: { | |
| left: "30%", | |
| }, | |
| }, | |
| }, { | |
| selector: true, | |
| iterationCount: 3, | |
| easing: "ease-in-out", | |
| }).playCSS(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment