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

溫馨提示×

溫馨提示×

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

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

如何使用微信小程序scroll-view實現左右聯動效果

發布時間:2022-10-21 16:59:10 來源:億速云 閱讀:319 作者:iii 欄目:開發技術

這篇文章主要介紹了如何使用微信小程序scroll-view實現左右聯動效果的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何使用微信小程序scroll-view實現左右聯動效果文章都會有所收獲,下面我們一起來看看吧。

點擊左邊的按鈕時,右邊可以跳動到指定的位置

  • 首先要注意使用scroll-view豎屏滾動,需要給scroll-view固定高度

  • 其次在點擊時,需要給需要滾動的scroll-view加上scroll-into-view,其值應該是子元素的id,且id不能以數字 開頭

滾動右邊,左邊菜單跳到相應的位置

  • 其實現的思想是,在右邊滾動屏滾動時,得到滾動的距離。將右邊滾動屏中各模塊到達頂部的距離計算出來放到一個數組中。第一個模塊的滾動距離是本身的高度,第二個模塊的滾動距離是第一個模塊的高度加上自身的高度,以此類推。滾動時,判斷滾動距離在保存好的數組中的哪個階段,并以此得出符合條件的下標值,將左側菜單對應的下標中的值做改動,就可以實現左右聯動。

  • 計算各模塊的高度時,獲取元素需要使用wx.createSelectorQuery(),其返回selectorQuerys對象實例;再利用返回來的節點的boundingClientRect(function callback)方法獲取節點的布局位置信息,在SelectorQuery.exec()執行后,將信息返回在回調函數中。本文中將獲取元素高度的方法寫在了onload中。

主要代碼如下:

index.wxml

<view class="container">
  <view class="category-left">
    <scroll-view scroll-y="true" >
      <block wx:for="{{category}}" wx:key="id">
       <view class="catgegory-item {{activeId === item.id?'active-item':''}}" data-id="{{item.id}}" bindtap="clickItem">{{item.name}}</view>
      </block>
    </scroll-view>
  </view>
  <view class="category-right">
    <scroll-view scroll-y="true"  scroll-into-view="{{toView}}" scroll-with-animation="ture" bindscroll="scroll">
      <view class="categoty-detail">
      <block wx:for="{{content}}" wx:key="id">
        <view class="catefory-main">
          <view class="category-title" id="{{item.id}}">{{item.title}}</view>
          <view class="category-content">
              <view class="content-item" wx:for="{{item.options}}" wx:for-item="i" wx:key="id">
                <image src="{{i.src}}"></image>
                <text>{{i.text}}</text>                                                      
              </view>
          </view>
        </view> 
      </block>
      </view>
    </scroll-view>
  </view>
</view>

index.js

//index.js
//獲取應用實例
const app = getApp()

Page({
  data: {
    toView: 'a1',
    activeId: 'a1',
    category: [
      {name: '新品', id: 'a1'},
      { name: '眾籌', id: 'a2' },
      { name: '小米手機', id: 'a3' },
      { name: 'redmi手機', id: 'a4' },
      { name: '黑鯊游戲', id: 'a5' },
      { name: "手機配件", id: 'a6' },
      { name: '電視', id: 'a7'},
      { name: '電腦', id: 'a8' },
    ],
    content: [
      {
        title: '- 新品 -', 
        options: [
          { src: '../../image/redmi.png',id: '001',text: 'redmi8'},
          { src: '../../image/redmi.png', id: '002', text: 'redmi8A' },
          { src: '../../image/redmi.png', id: '003', text: '小米9pro 5G'},
          { src: '../../image/redmi.png', id: '004', text: 'redmi8'},
          { src: '../../image/redmi.png', id: '005',text: 'redmi8' }
        ],
        id: 'a1'
      },
      {
        title: '- 眾籌 -',
        options: [
          { src: '../../image/zhongchou.png', id: '006', text: 'redmi8' },
          { src: '../../image/zhongchou.png', id: '007' ,text: 'redmi8'},
          { src: '../../image/zhongchou.png', id: '008', text: 'redmi8' },
          { src: '../../image/zhongchou.png', id: '009',text: 'redmi8' }
        ],
        id: 'a2'
      },
      {
        title: '- 小米手機 -',
        options: [
          { src: '../../image/xiaomi.png', id: '006', text: 'redmi8' },
          { src: '../../image/xiaomi.png', id: '007', text: 'redmi8' },
          { src: '../../image/xiaomi.png', id: '008', text: 'redmi8' },
          { src: '../../image/xiaomi.png', id: '009', text: 'redmi8' }
        ],
         id: 'a3'
      },
      {
        title: '- redmi手機 -',
        options: [
          { src: '../../image/hongmi.png', id: '006', text: 'redmi8' },
          { src: '../../image/hongmi.png', id: '007', text: 'redmi8' },
          { src: '../../image/hongmi.png', id: '008', text: 'redmi8' },
          { src: '../../image/hongmi.png', id: '009', text: 'redmi8' }
        ],
        id: 'a4'
      }

    ],
  },
  //事件處理函數
  onLoad: function () {
    this.setData({
      toView: 'a1',
      heightArr: []
    })
    let query = wx.createSelectorQuery();
    query.selectAll('.catefory-main').boundingClientRect((rect)=> {
      rect.forEach(ele => {
        this.calculateHeight(ele.height);
      })
    }).exec();
  },
  clickItem(e) {
    this.setData({
      activeId: e.currentTarget.dataset.id,
      toView: e.currentTarget.dataset.id
    })
  },
  scroll(e) {
    let scrollHeight = e.detail.scrollTop;
    let index = this.calculateIndex(this.data.heightArr,scrollHeight);
    this.setData({
      activeId: 'a'+index
    })

  },
  // 計算滾動的區間
  calculateHeight(height) {
    if(!this.data.heightArr.length) {
      this.data.heightArr.push(height)
    }else {
      this.data.heightArr.forEach(ele => {
        height += ele
      })
      this.data.heightArr.push(height);
    }
  },
  // 計算左邊選中的下標
  calculateIndex(arr, scrollHeight) {
    let index= '';
    for(let i =0;i<arr.length;i++) {
      if (scrollHeight >= 0 && scrollHeight < arr[0]){
        index = 0;
      }else if(scrollHeight >= arr[i-1] && scrollHeight < arr[i]){
        index = i;
      }
    }
    return index+1;
  }
})

index.wxss

/**index.wxss**/
.container {
  padding: 0;
  width:100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.category-left {
  height: 100%;
  width: 22%;
  padding: 0 20rpx;
  box-sizing: border-box;
  border-right: 1px solid #efefef;
}
.catgegory-item {
  padding: 20rpx 0;
  font-size: 30rpx;
  text-align:  center;
}
.active-item {
  color: orange;
}
.category-right {
  flex:1;
  height: 100%;
}
.category-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, 190rpx);
}
.category-title {
  text-align: center;
}
.content-item {
  display: flex;
  flex-direction: column;
  padding: 20rpx;
  text-align: center;
  font-size: 30rpx;
}
.content-item image{
  width: 120rpx;
  height: 120rpx;
}

關于“如何使用微信小程序scroll-view實現左右聯動效果”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“如何使用微信小程序scroll-view實現左右聯動效果”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

教育| 肇东市| 泗阳县| 镇巴县| 沧州市| 绵阳市| 青龙| 海城市| 常宁市| 呈贡县| 策勒县| 黑龙江省| 屯昌县| 佛山市| 刚察县| 霍山县| 盐池县| 鹤壁市| 重庆市| 南宫市| 平定县| 右玉县| 靖江市| 增城市| 民丰县| 濮阳县| 延安市| 五家渠市| 呼图壁县| 若羌县| 隆安县| 丹阳市| 灵石县| 广宁县| 惠安县| 库车县| 清流县| 志丹县| 古交市| 方城县| 清水县|