微信小程序開發(fā)文檔相關(guān)記錄
2020-09-27|HiShop
導(dǎo)讀:小程序開發(fā)文檔針對(duì)底部導(dǎo)航,滑塊視圖實(shí)現(xiàn),以及調(diào)用豆瓣電影api等做個(gè)一個(gè)整理文檔,供大家參考。...
小程序開發(fā)文檔針對(duì)底部導(dǎo)航,滑塊視圖實(shí)現(xiàn),以及調(diào)用豆瓣電影api等做個(gè)一個(gè)整理文檔,供大家參考。
1、底部的tabBar
可設(shè)置的屬性有color、selectedColor、borderStyle、backgroundColor、list至少2個(gè),最多5個(gè)(其屬性有pagePath、text、iconPath、selectedIconPath等)
"tabBar": { "color":"#dddddd", "selectedColor":"#3cc51f", "borderStyle":"black", "backgroundColor":"#2B2B2B", "list": [ { "pagePath": "pages/movie/movie", "text": "影院熱映", "iconPath": "assets/img/dy-1.png", "selectedIconPath": "assets/img/dy.png" }, { "pagePath": "pages/recommend/recommend", "text": "電影推薦", "iconPath": "assets/img/tj-1.png", "selectedIconPath": "assets/img/tj.png" }, { "pagePath": "pages/search/search", "text": "查詢電影", "iconPath": "assets/img/search-1.png", "selectedIconPath": "assets/img/search.png" } ] },
2、 滑塊視圖容器 swiper
swiper
滑塊視圖容器。
屬性名 | 類型 | 默認(rèn)值 | 說(shuō)明 | 最低版本 |
---|---|---|---|---|
indicator-dots | Boolean | false | 是否顯示面板指示點(diǎn) | |
indicator-color | Color | rgba(0, 0, 0, .3) | 指示點(diǎn)顏色 | 1.1.0 |
indicator-active-color | Color | #000000 | 當(dāng)前選中的指示點(diǎn)顏色 | 1.1.0 |
autoplay | Boolean | false | 是否自動(dòng)切換 | |
current | Number | 0 | 當(dāng)前所在頁(yè)面的 index | |
interval | Number | 5000 | 自動(dòng)切換時(shí)間間隔 | |
duration | Number | 500 | 滑動(dòng)動(dòng)畫時(shí)長(zhǎng) | |
circular | Boolean | false | 是否采用銜接滑動(dòng) | |
vertical | Boolean | false | 滑動(dòng)方向是否為縱向 | |
bindchange | EventHandle | current 改變時(shí)會(huì)觸發(fā) change 事件,event.detail = {current: current, source: source} |
從公共庫(kù)v1.4.0開始, change 事件返回 detail 中包含一個(gè) source 字段,表示導(dǎo)致變更的原因,可能值如下:
- autoplay 自動(dòng)播放導(dǎo)致swiper變化;
- touch 用戶劃動(dòng)引起swiper變化;
- 其他原因?qū)⒂每兆址硎尽?/li>
注意 :其中只可放置
swiper-item
僅可放置在
示例代碼:
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> <block wx:for="{{imgUrls}}"> <swiper-item> <image src="{{item}}" class="slide-image" width="355" height="150"/> swiper-item> block> swiper> <button bindtap="changeIndicatorDots"> indicator-dots button> <button bindtap="changeAutoplay"> autoplay button> <slider bindchange="intervalChange" show-value min="500" max="2000"/> interval <slider bindchange="durationChange" show-value min="1000" max="10000"/> duration
Page({ data: { imgUrls: [ 'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ], indicatorDots: false, autoplay: false, interval: 5000, duration: 1000 }, changeIndicatorDots: function(e) { this.setData({ indicatorDots: !this.data.indicatorDots }) }, changeAutoplay: function(e) { this.setData({ autoplay: !this.data.autoplay }) }, intervalChange: function(e) { this.setData({ interval: e.detail.value }) }, durationChange: function(e) { this.setData({ duration: e.detail.value }) } })
詳情請(qǐng)查看:小程序滑塊視圖容器swiper
3、豆瓣API
- 第 1 頁(yè)【小程序開發(fā)】微信小程序開發(fā)文檔相關(guān)記錄
- 第 2 頁(yè)【小程序開發(fā)文檔】 小程序調(diào)用豆瓣電影api
- 第 3 頁(yè)【小程序開發(fā)文檔】 小程序加載進(jìn)度條的實(shí)現(xiàn)
上一篇:微信小程序怎么開發(fā) 下一篇:微信小游戲開發(fā)配置API接口