├── .gitattributes ├── LICENSE ├── README.md ├── alloy_flow.js ├── asset ├── alloy_flow.png ├── animate.min.css ├── case1.gif ├── case2.gif ├── example.html ├── favicon.ico ├── to.js └── transform.js ├── example ├── goto_index.html └── goto_time.html ├── index.html ├── index_cn.html └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=JavaScript -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/README.md -------------------------------------------------------------------------------- /alloy_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/alloy_flow.js -------------------------------------------------------------------------------- /asset/alloy_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/alloy_flow.png -------------------------------------------------------------------------------- /asset/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/animate.min.css -------------------------------------------------------------------------------- /asset/case1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/case1.gif -------------------------------------------------------------------------------- /asset/case2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/case2.gif -------------------------------------------------------------------------------- /asset/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/example.html -------------------------------------------------------------------------------- /asset/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/favicon.ico -------------------------------------------------------------------------------- /asset/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/to.js -------------------------------------------------------------------------------- /asset/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/asset/transform.js -------------------------------------------------------------------------------- /example/goto_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/example/goto_index.html -------------------------------------------------------------------------------- /example/goto_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/example/goto_time.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/index.html -------------------------------------------------------------------------------- /index_cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/index_cn.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/AlloyFlow/HEAD/package.json --------------------------------------------------------------------------------