欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序 視圖容器組件的詳解及實(shí)例代碼

 更新時間:2017年01月19日 15:45:37   投稿:lqh  
這篇文章主要介紹了微信小程序 視圖容器組件的詳解及實(shí)例代碼的相關(guān)資料,這里對基礎(chǔ)知識進(jìn)行了詳細(xì)介紹并附有簡單實(shí)例代碼,需要的朋友可以參考下

微信小程序 視圖容器組件詳解:

小程序給出的視圖容器組件有三個:</view>、</scroll-view>和</swiper>:

1、</view> 視圖容器

</view>相當(dāng)于html中的</div>標(biāo)簽,有四個屬性:

這里寫圖片描述

hoverhover-class與點(diǎn)擊效果有關(guān):hover設(shè)置是否啟用點(diǎn)擊效果,而hover-class設(shè)置點(diǎn)擊的效果。

hover-start-time和hover-stay-time與點(diǎn)擊效果的時間有關(guān):hover-start-time設(shè)置點(diǎn)擊之后點(diǎn)擊效果出現(xiàn)的延遲時間,hover-stay-time設(shè)置點(diǎn)擊效果持續(xù)的時間,單位都是毫秒。

創(chuàng)建一個項(xiàng)目測試一下:

index.wxml

<view class="container">
 <view class="flex-item bc_green" hover="true" hover-class="green_hover">1</view>
 <view class="flex-item bc_red" hover="true" hover-class="red_hover" hover-start-time="400" hover-stay-time="1000">2</view>
 <view class="flex-item bc_blue">3</view>
</view>

index.wxss

.flex-item{
 width: 100%;
 height: 100px;
 box-sizing: border-box;
}
.bc_green{
 background-color: green;
}
.bc_red{
 background-color: red;
}
.bc_blue{
 background-color: blue;
}
.green_hover{
 border: 5px solid black;
}
.red_hover{
 border: 5px solid black;
}

效果如下:

這里寫圖片描述

設(shè)置了第一個和第二個子view的點(diǎn)擊效果,這兩個點(diǎn)擊效果的時間有所不同,第二個的點(diǎn)擊之后延遲出現(xiàn)的時間更長,而且持續(xù)的時間也更長。第三個沒有另外的點(diǎn)擊效果,因此是使用的默認(rèn)值,默認(rèn)是沒有點(diǎn)擊效果的。

2、</scroll-view> 可滾動視圖區(qū)域

</scroll-view>有兩類:橫向滾動和縱向滾動。</scroll-view>有以下屬性:

這里寫圖片描述

同樣,我們創(chuàng)建一個項(xiàng)目來了解以上屬性的使用。

index.wxml

<view class="container">
 <scroll-view class="srcoll_view" scroll-y="true" lower-threshold="100" bindscrolltolower="lower" scroll-top="{{scrollTop}}" scroll-into-view="{{toView}}">
 <view id="green" class="flex-item bc_green">1</view>
 <view id="red" class="flex-item bc_red">2</view>
 <view id="blue" class="flex-item bc_blue">3</view>
 <view id="yellow" class="flex-item bc_yellow">4</view>
 </scroll-view>
 <view class="clickItem" bindtap="clickAdd">點(diǎn)擊向下滾動</view>
 <view class="clickItem" bindtap="clickTo">點(diǎn)擊滾動到下一個子view</view>
</view>

index.wxss

.srcoll_view{
 height: 200px;
}
.flex-item{
 width: 100%;
 height: 100px;
 box-sizing: border-box;
}

.bc_green{
 background-color: green;
}

.bc_red{
 background-color: red;
}

.bc_blue{
 background-color: blue;
}
.bc_yellow{
 background-color: yellow;
}

.clickItem{
 margin-top: 20px;
 background-color: grey;
 height: 20px;
 border-radius: 5px;
}

index.js

var app = getApp();
var order = ['green','red', 'blue','yellow','green'];
Page({
 data: {
 scrollTop: 0,
 toView:"green"
 },

 onLoad: function () {
 },

 lower: function(e) {
 console.log(e)
 },

 clickAdd:function(){
 this.setData({
  scrollTop: this.data.scrollTop+20
 });
 console.log("this.data.scrollTop:" + this.data.scrollTop);
 },

 clickTo: function(e) {
 for (var i = 0; i < order.length; i++) {
 if (order[i] === this.data.toView) {
 this.setData({
  toView: order[i + 1]
 })
 break
 }
 }
 },

})

頁面效果如下:

這里寫圖片描述

scroll-y和scroll-x"

首先我們設(shè)置了</scroll-view>的scroll-y="true",也就是縱向滾動,在index.wxss中設(shè)置了其高度為200px,里面的每一個子</view>的高度為100px,正好可以完全容納兩個完整的子</view>。如果設(shè)置scroll-x="true"則為橫向滾動。

scroll-top和scroll-left

scroll-top為豎向滾動條位置,默認(rèn)為0;同理scroll-left為橫向滾動條位置。上述程序中設(shè)置了scroll-top="{{scrollTop}}",scrollTop從數(shù)據(jù)中獲取。

為了更好的展示,給一個新的</view>綁定一個函數(shù):

 <view class="clickItem" bindtap="clickAdd">點(diǎn)擊向下滾動</view>

函數(shù)遞增改變scrollTop的值:

clickAdd:function(){
 this.setData({
  scrollTop: this.data.scrollTop+20
 });
 console.log("this.data.scrollTop:" + this.data.scrollTop);
 },

所以每點(diǎn)擊一次,scrollTop就增加20,因此向下滾動20px。

這里寫圖片描述

scroll-into-view

scroll-into-view的值為某個子元素的id,表明滾動到該元素,元素頂部對齊滾動區(qū)域頂部。上述程序中設(shè)置了scroll-into-view="{{toView}}",toView從數(shù)據(jù)中獲取。

新建一個</view>并綁定一個函數(shù):

<view class="clickItem" bindtap="clickTo">點(diǎn)擊滾動到下一個子view</view>
1

函數(shù)的功能為按順序滾動到對應(yīng)的子元素:

clickTo: function(e) {
 for (var i = 0; i < order.length; i++) {
 if (order[i] === this.data.toView) {
 this.setData({
  toView: order[i + 1]
 })
 break
 }
 }
 },

其中order為一個數(shù)組變量,存放著所有子元素的id:

var order = ['green','red', 'blue','yellow'];

bindscrolltolower和bindscrolltoupper

bindscrolltolower和bindscrolltoupper為事件綁定:bindscrolltolower是滾動到底部/右邊時觸發(fā);bindscrolltoupper是滾動到頂部/左邊時觸發(fā)。另外還有一個bindscroll是只要滾動時就會觸發(fā)。

以bindscrolltolower為例,bindscrolltolower表示滾動到底部或右邊時觸發(fā),這個底部或右邊是如何定義的呢?這時就需要用到lower-threshold,lower-threshold表示距底部/右邊多遠(yuǎn)時(單位px),觸發(fā) scrolltolower 事件,默認(rèn)值為50,上述代碼中我們定義了lower-threshold="100",由于子</view>的高度就是100px,所以正好出現(xiàn)最后一個子</view>時就會觸發(fā)事件:

這里寫圖片描述

3、</swiper> 滑塊視圖容器

</swiper>其實(shí)就是微信小程序封裝的幻燈片輪播功能,并給出了幾個可供開發(fā)者設(shè)置的屬性:

這里寫圖片描述

用戶可以根據(jù)自己需求設(shè)置相應(yīng)的屬性值即可,示例代碼如下:

swiper.wxml

<view class="container">
 <swiper indicator-dots="{{indicatorDots}}"
 autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" circular="{{circular}}" bindchange="change">
 <block wx:for="{{imgUrls}}">
  <swiper-item>
  <image src="{{item}}" />
  </swiper-item>
 </block>
 </swiper>
</view>

swiper.wxss

swiper{
 height: 150px;
 width:100%;
}

swiper.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: true,
 autoplay: true,
 interval: 2000,
 duration: 500,
 circular:true
 },

 change:function(e){
 console.log(e);
 }

})

由于綁定了change函數(shù),所以每次切換時,都會觸發(fā)change事件:

這里寫圖片描述

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論