├── README.md └── day1 ├── README.md ├── app.js ├── app.json ├── app.wxss ├── font ├── demo.css ├── demo_fontclass.html ├── demo_symbol.html ├── demo_unicode.html ├── iconfont.eot ├── iconfont.js ├── iconfont.svg ├── iconfont.ttf ├── iconfont.woff └── iconfont.wxss ├── pages ├── list │ ├── img │ │ ├── bigImg.png │ │ ├── goods1.png │ │ ├── goods2.png │ │ ├── goods3.png │ │ ├── goods4.png │ │ ├── goods5.png │ │ ├── goods6.png │ │ ├── goods7.png │ │ ├── s1.png │ │ ├── s2.png │ │ ├── s3.png │ │ └── s4.png │ ├── list.js │ ├── list.json │ ├── list.wxml │ └── list.wxss ├── logs │ ├── img │ │ ├── bigimg.png │ │ ├── bigimg1.png │ │ ├── goods1.png │ │ ├── goods2.png │ │ ├── goods3.png │ │ ├── goods4.png │ │ ├── goods5.png │ │ ├── s1.png │ │ ├── s2.png │ │ ├── s3.png │ │ └── s4.png │ ├── logs.js │ ├── logs.json │ ├── logs.wxml │ └── logs.wxss ├── routerOne │ ├── one.js │ ├── one.json │ ├── one.wxml │ └── one.wxss ├── routerThree │ ├── three.js │ ├── three.json │ ├── three.wxml │ └── three.wxss └── routerTwo │ ├── two.js │ ├── two.json │ ├── two.wxml │ └── two.wxss ├── project.config.json └── utils └── util.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/README.md -------------------------------------------------------------------------------- /day1/README.md: -------------------------------------------------------------------------------- 1 | # 轮播 跳转页面 上拉加载 下拉刷新 2 | # 练习:分享 底部导航 跳转其他小程序 弹窗 3 | -------------------------------------------------------------------------------- /day1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/app.js -------------------------------------------------------------------------------- /day1/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/app.json -------------------------------------------------------------------------------- /day1/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/app.wxss -------------------------------------------------------------------------------- /day1/font/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/demo.css -------------------------------------------------------------------------------- /day1/font/demo_fontclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/demo_fontclass.html -------------------------------------------------------------------------------- /day1/font/demo_symbol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/demo_symbol.html -------------------------------------------------------------------------------- /day1/font/demo_unicode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/demo_unicode.html -------------------------------------------------------------------------------- /day1/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.eot -------------------------------------------------------------------------------- /day1/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.js -------------------------------------------------------------------------------- /day1/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.svg -------------------------------------------------------------------------------- /day1/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.ttf -------------------------------------------------------------------------------- /day1/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.woff -------------------------------------------------------------------------------- /day1/font/iconfont.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/font/iconfont.wxss -------------------------------------------------------------------------------- /day1/pages/list/img/bigImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/bigImg.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods1.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods2.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods3.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods4.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods5.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods6.png -------------------------------------------------------------------------------- /day1/pages/list/img/goods7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/goods7.png -------------------------------------------------------------------------------- /day1/pages/list/img/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/s1.png -------------------------------------------------------------------------------- /day1/pages/list/img/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/s2.png -------------------------------------------------------------------------------- /day1/pages/list/img/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/s3.png -------------------------------------------------------------------------------- /day1/pages/list/img/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/img/s4.png -------------------------------------------------------------------------------- /day1/pages/list/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/list.js -------------------------------------------------------------------------------- /day1/pages/list/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/list.json -------------------------------------------------------------------------------- /day1/pages/list/list.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/list.wxml -------------------------------------------------------------------------------- /day1/pages/list/list.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/list/list.wxss -------------------------------------------------------------------------------- /day1/pages/logs/img/bigimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/bigimg.png -------------------------------------------------------------------------------- /day1/pages/logs/img/bigimg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/bigimg1.png -------------------------------------------------------------------------------- /day1/pages/logs/img/goods1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/goods1.png -------------------------------------------------------------------------------- /day1/pages/logs/img/goods2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/goods2.png -------------------------------------------------------------------------------- /day1/pages/logs/img/goods3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/goods3.png -------------------------------------------------------------------------------- /day1/pages/logs/img/goods4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/goods4.png -------------------------------------------------------------------------------- /day1/pages/logs/img/goods5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/goods5.png -------------------------------------------------------------------------------- /day1/pages/logs/img/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/s1.png -------------------------------------------------------------------------------- /day1/pages/logs/img/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/s2.png -------------------------------------------------------------------------------- /day1/pages/logs/img/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/s3.png -------------------------------------------------------------------------------- /day1/pages/logs/img/s4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/img/s4.png -------------------------------------------------------------------------------- /day1/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/logs.js -------------------------------------------------------------------------------- /day1/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微博动漫", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /day1/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/logs.wxml -------------------------------------------------------------------------------- /day1/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/logs/logs.wxss -------------------------------------------------------------------------------- /day1/pages/routerOne/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerOne/one.js -------------------------------------------------------------------------------- /day1/pages/routerOne/one.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | 4 | } -------------------------------------------------------------------------------- /day1/pages/routerOne/one.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerOne/one.wxml -------------------------------------------------------------------------------- /day1/pages/routerOne/one.wxss: -------------------------------------------------------------------------------- 1 | /* pages/routerOne/one.wxss */ -------------------------------------------------------------------------------- /day1/pages/routerThree/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerThree/three.js -------------------------------------------------------------------------------- /day1/pages/routerThree/three.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /day1/pages/routerThree/three.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerThree/three.wxml -------------------------------------------------------------------------------- /day1/pages/routerThree/three.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerThree/three.wxss -------------------------------------------------------------------------------- /day1/pages/routerTwo/two.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerTwo/two.js -------------------------------------------------------------------------------- /day1/pages/routerTwo/two.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /day1/pages/routerTwo/two.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/pages/routerTwo/two.wxml -------------------------------------------------------------------------------- /day1/pages/routerTwo/two.wxss: -------------------------------------------------------------------------------- 1 | /* pages/routerTwo/two.wxss */ -------------------------------------------------------------------------------- /day1/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/project.config.json -------------------------------------------------------------------------------- /day1/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisislys/myTeam/HEAD/day1/utils/util.js --------------------------------------------------------------------------------