├── .gitignore ├── LICENSE ├── README.md ├── component.json └── timeline.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/timeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # timeline 2 | 管理动画的时间轴,封装了raf 3 | -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/timeline/HEAD/component.json -------------------------------------------------------------------------------- /timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/timeline/HEAD/timeline.js --------------------------------------------------------------------------------