├── .gitignore ├── LICENSE ├── README.md ├── demo ├── simple.html └── timeline.html ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/README.md -------------------------------------------------------------------------------- /demo/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/demo/simple.html -------------------------------------------------------------------------------- /demo/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/demo/timeline.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luruke/clip-rect/HEAD/package.json --------------------------------------------------------------------------------