123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- const windowWidth = wx.getSystemInfoSync().windowWidth
- Page({
- onShareAppMessage() {
- return {
- title: 'nearby',
- path: 'packageAPI/pages/framework/wxs/nearby'
- }
- },
- data: {
- theme: 'light',
- imgUrls: [
- 'http://mmbiz.qpic.cn/sz_mmbiz_jpg/GEWVeJPFkSEV5QjxLDJaL6ibHLSZ02TIcve0ocPXrdTVqGGbqAmh5Mw9V7504dlEiatSvnyibibHCrVQO2GEYsJicPA/0?wx_fmt=jpeg',
- 'http://mmbiz.qpic.cn/sz_mmbiz_png/GEWVeJPFkSHALb0g5rCc4Jf5IqDfdwhWJ43I1IvriaV5uFr9fLAuv3uxHR7DQstbIxhNXFoQEcxGzWwzQUDBd6Q/0?wx_fmt=png',
- 'http://mmbiz.qpic.cn/sz_mmbiz_jpg/GEWVeJPFkSGqys4ibO2a8L9nnIgH0ibjNXfbicNbZQQYfxxUpmicQglAEYQ2btVXjOhY9gRtSTCxKvAlKFek7sRUFA/0?wx_fmt=jpeg',
- 'http://mmbiz.qpic.cn/sz_mmbiz_jpg/GEWVeJPFkSH2Eic4Lt0HkZeEN08pWXTticVRgyNGgBVHMJwMtRhmB0hE4m4alSuwsBk3uBBOhdCr91bZlSFbYhFg/0?wx_fmt=jpeg'
- ],
- imgSize: [{
- height: 150
- }, {
- height: 200
- }, {
- height: 150
- }, {
- height: 150
- }],
- indicatorDots: true,
- autoplay: false,
- interval: 3000,
- duration: 500,
- left: 0,
- windowWidth
- },
- changeIndicatorDots() {
- this.setData({
- indicatorDots: !this.data.indicatorDots
- })
- },
- swiperTransition1(e) {
- console.log('e.transition', e)
- this.setData({
- left: (e.detail.x) / 4
- })
- },
- onReady() {
- },
- changeAutoplay() {
- this.setData({
- autoplay: !this.data.autoplay
- })
- },
- intervalChange(e) {
- this.setData({
- interval: e.detail.value
- })
- },
- durationChange(e) {
- this.setData({
- duration: e.detail.value
- })
- },
- onLoad() {
- this.setData({
- theme: wx.getSystemInfoSync().theme || 'light'
- })
- if (wx.onThemeChange) {
- wx.onThemeChange(({theme}) => {
- this.setData({theme})
- })
- }
- }
- })
|