91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序之swiper滑動面板用法示例

發布時間:2020-08-23 12:24:22 來源:腳本之家 閱讀:909 作者:我要看一下山頂的風景 欄目:web開發

本文實例講述了微信小程序之swiper滑動面板用法。分享給大家供大家參考,具體如下:

swiper就是為了以后做輪播圖用的。下面是一些它的屬性

微信小程序之swiper滑動面板用法示例

PS:關于微信小程序組件可參考本站在線工具微信小程序組件說明表http://tools.jb51.net/table/wx_component
或官網https://developers.weixin.qq.com/miniprogram/dev/component/

1.首先新建一個page(記得在app.json中注冊),上效果圖。

微信小程序之swiper滑動面板用法示例

2.index.wxml中的代碼

<swiper class="view-item" indicator-dots="true" autoplay="true">
<swiper-item class="bg-green">
<view >Content</view>
</swiper-item>
<swiper-item class="bg-yellow">
<view >Content</view>
</swiper-item>
<swiper-item class="bg-blue">
<view >Content</view>
</swiper-item>
</swiper>

注意:在swiper標簽中只可放置swiper-item組件,其他標簽如果不放在swiper-item的標簽下是沒用的,會被自動屏蔽

注意:要想實現滑動面板,必須有swiper和swiper-item這兩個標簽,一個是控制整個輪播的大小和樣式。而swiper-item控制子視圖。

indicator-dots=”true”—就是那三個小點,顯示是true隱藏是false
autoplay=”true”—是否自動播放。
current=“2”—首先顯示的是第(i-1)個視圖,i-1是因為它和數組一樣,是從0開頭的。
interval=”1000”—是指隔幾秒換一個圖片,1000是1秒
duration=”3000”—是指從一個頁面滑動另一個頁面所需要的時間,但我發現一個有趣的現象,如果你interval=”1000”的話,它一個頁面還沒滑動完就,想滑動到第三個頁面。

3.官方提供的代碼 有意思的是它居然沒效果,剛開始我還以為自己哪里錯了,最后才發現官方吧swiper寫成swpier,開來微信小程序還待完善啊。先上效果圖

微信小程序之swiper滑動面板用法示例

index.wxml中

<swpier indicator-dots="{{indicatorDots}}"
 autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
 <block wx:for-items="{{imgUrls}}">
  <swpier-item>
   <image src="{{item}}" class="slide-image" width="355" height="150"/>
  </swpier-item>
 </block>
</swpier>
<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

index.js

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
  })
 }
})

其實,你應該也發現了,微信小程序的index.wxml和index.wxss文件很好理解并且很好上手,難點就在于index.js和index.json的理解,也就是對程序邏輯的處理。

希望本文所述對大家微信小程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

若尔盖县| 墨玉县| 隆安县| 繁峙县| 长宁区| 汝州市| 崇明县| 文山县| 泰安市| 财经| 昭苏县| 咸阳市| 浦东新区| 白水县| 柳州市| 阿合奇县| 怀化市| 民勤县| 南皮县| 荆州市| 海南省| 大埔县| 重庆市| 搜索| 青铜峡市| 沽源县| 鄂尔多斯市| 建瓯市| 梁山县| 晋州市| 扎赉特旗| 乡宁县| 苗栗县| 临桂县| 洛阳市| 宁化县| 太和县| 乌鲁木齐县| 巴楚县| 南京市| 浦北县|