├── .gitattributes ├── .gitignore ├── README.md ├── app.js ├── app.json ├── app.wxss ├── images ├── icon0.png ├── icon1.png ├── icon2.png ├── icon3.png ├── icon4.png ├── icon5.png └── icon6.png └── pages └── leftSwiperDel ├── index.js ├── index.json ├── index.wxml └── index.wxss /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wxapp-leftSwiperDel 2 | 微信小程序---左滑删除 3 | 4 | #效果图 5 | ![mahua](http://a3767c8e05b9af00df2d.b0.upaiyun.com/apicloud/05e36d4e5e46fddf6a8e42e47ba99d35.gif) 6 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | 2 | //app.js 3 | App({}); 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/app.wxss -------------------------------------------------------------------------------- /images/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon0.png -------------------------------------------------------------------------------- /images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon1.png -------------------------------------------------------------------------------- /images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon2.png -------------------------------------------------------------------------------- /images/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon3.png -------------------------------------------------------------------------------- /images/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon4.png -------------------------------------------------------------------------------- /images/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon5.png -------------------------------------------------------------------------------- /images/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/images/icon6.png -------------------------------------------------------------------------------- /pages/leftSwiperDel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/pages/leftSwiperDel/index.js -------------------------------------------------------------------------------- /pages/leftSwiperDel/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/pages/leftSwiperDel/index.json -------------------------------------------------------------------------------- /pages/leftSwiperDel/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/pages/leftSwiperDel/index.wxml -------------------------------------------------------------------------------- /pages/leftSwiperDel/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanyang749/wxapp-leftSwiperDel/HEAD/pages/leftSwiperDel/index.wxss --------------------------------------------------------------------------------