Skip to content
master
Go to file
Code

Latest commit

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
Jan 29, 2021
Jan 29, 2021
img
Jan 29, 2021
src
Jan 29, 2021
Jan 29, 2021
Jan 29, 2021
Jan 29, 2021
Jan 29, 2021

README.md

logo

movy.js is an easy-to-use animation engine based on three.js and gsap.

gallery

Prerequisite

Please also make sure your node version is 12.x

Notice: ReferenceError: BigInt is not defined ,you should make sure your node version is 12.x.

Getting Started

Assuming you have node.js installed on your computer, you can install movy.js simply by:

npm i -g movy

To run movy.js, enter the following command in your terminal:

movy

It will show a list of example animations in the examples folder.

examples

To create your own animation, you can start a new javascript file. Following is a simple hello-world program for movy.js.

import * as mo from "movy";

const t = mo
  .addText("movy.js is simple!", {
    scale: 1,
    color: "yellow",
  })
  .reveal();

mo.run();

Save the file as hello.js, then open the animation in the browser by

movy hello.js

About

movy.js is an easy-to-use animation engine based on three.js and gsap.

Resources

License

Releases

No releases published

Packages

No packages published