├── README.md ├── Screenshot ├── loading1.gif ├── loading2.gif ├── loading3.gif ├── loading4.gif └── loading5.gif ├── app.js ├── app.json ├── app.wxss ├── pages ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ ├── index.wxss │ ├── page2.js │ ├── page2.json │ ├── page2.wxml │ └── page2.wxss └── logs │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss └── utils └── util.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/Screenshot/loading1.gif -------------------------------------------------------------------------------- /Screenshot/loading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/Screenshot/loading2.gif -------------------------------------------------------------------------------- /Screenshot/loading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/Screenshot/loading3.gif -------------------------------------------------------------------------------- /Screenshot/loading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/Screenshot/loading4.gif -------------------------------------------------------------------------------- /Screenshot/loading5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/Screenshot/loading5.gif -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/app.wxss -------------------------------------------------------------------------------- /pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/index.js -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/index.wxml -------------------------------------------------------------------------------- /pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/index.wxss -------------------------------------------------------------------------------- /pages/index/page2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/page2.js -------------------------------------------------------------------------------- /pages/index/page2.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/index/page2.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/page2.wxml -------------------------------------------------------------------------------- /pages/index/page2.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/index/page2.wxss -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/logs/logs.js -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/logs/logs.wxml -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/pages/logs/logs.wxss -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq273681448/WechatLoading/HEAD/utils/util.js --------------------------------------------------------------------------------