├── .editorconfig ├── .gitignore ├── .prettierrc ├── .wepycache ├── .wepyignore ├── LICENSE ├── README.md ├── example ├── index.wpy └── show.gif ├── loadings.less ├── loadings.wpy ├── package.json ├── project.config.json └── wepy.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DB_store 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.wepycache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/.wepycache -------------------------------------------------------------------------------- /.wepyignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DB_store 4 | *.wpy___jb_tmp___ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/README.md -------------------------------------------------------------------------------- /example/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/example/index.wpy -------------------------------------------------------------------------------- /example/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/example/show.gif -------------------------------------------------------------------------------- /loadings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/loadings.less -------------------------------------------------------------------------------- /loadings.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/loadings.wpy -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/project.config.json -------------------------------------------------------------------------------- /wepy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Licoy/wepy-com-loadings/HEAD/wepy.config.js --------------------------------------------------------------------------------