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

溫馨提示×

微信小程序左側欄滑動怎么實現

楓吟
1197
2021-03-26 15:52:43
欄目: 云計算

微信小程序左側欄滑動的方法:1.創建微信小程序項目;2.在index.wxml文件中添加頁面設計代碼;3.在index.wxss文件中添加樣式代碼;4.在index.js文件中添加實現文件滑動效果的代碼;5.保存編輯的代碼并進行調試即可。

微信小程序左側欄滑動怎么實現

具體操作步驟如下:

1、首先在創建一個微信小程序項目。

微信小程序左側欄滑動怎么實現

2、在pages包下的index目錄中index.wxml文件里添加實現左側欄菜單的頁面設計代碼。

<!-- 左側滾動欄 -->

<view class='under_line'></view>

<view style='float: left' class='left'>

  <scroll-view scroll-y scroll-with-animation scroll-left="{{scrollLength}}" class='scrollY' style='height: {{winHeight}}px'>

    <view class='all clear'>

      <block wx:key="lists" wx:for="{{lists}}">

        <view bindtap='jumpIndex' data-menuindex='{{index}}'>

          <view class='text-style'>

            <text class="{{indexId==index?'active1':''}}">{{item}}</text>

            <text class="{{indexId==index?'active':''}}"></text>

          </view>

        </view>

      </block>

    </view>

  </scroll-view>

</view>

微信小程序左側欄滑動怎么實現

3、在pages包下的index目錄中index.wxss文件添加樣式代碼,美化頁面布局。

.under_line{

  width: 100%;

  border-top: 1rpx solid #efefef;

}

.scrollY {

  width: 200rpx;

  position: fixed;

  left: 0;

  top: 0;

  border-right: 1rpx solid #efefef;

}

 

.left {

  border-top: 1rpx solid #efefef;

  border-right: 1rpx solid #efefef;

}

 

.text-style {

  width: 200rpx;

  height: 140rpx;

  line-height: 140rpx;

  text-align: center;

  font-size: 34rpx;

  font-family: PingFangSC-Semibold;

  color: rgba(51, 51, 51, 1);

}

 

.active1 {

  color: #85d1fd;

}

 

.active {

  display: block;

  width: 50rpx;

  height: 6rpx;

  background: #85d1fd;

  position: relative;

  left: 75rpx;

  bottom: 30rpx;

}

微信小程序左側欄滑動怎么實現

4、在pages包下的index目錄中index.js文件里添加實現滾動效果的代碼。

Page({

 

  /**

   * 頁面的初始數據

   */

  data: {

    lists: [

      "標題1", "標題二", "標題三", "標題四", "標題五", "標題六", "標題七", "標題八", "標題九", "標題十", "標題十一", "標題十二"

    ],

    indexId: 0,

  },

  // 左側點擊事件

  jumpIndex(e) {

    let index = e.currentTarget.dataset.menuindex

    let that = this

    that.setData({

      indexId: index

    });

  },

  /**

   * 生命周期函數--監聽頁面加載

   */

  onLoad: function(options) {

    var that = this

    wx.getSystemInfo({

      success: function(res) {

        that.setData({

          winHeight: res.windowHeight

        });

      }

    });

  },

 

  /**

   * 生命周期函數--監聽頁面初次渲染完成

   */

  onReady: function() {

 

  },

 

  /**

   * 生命周期函數--監聽頁面顯示

   */

  onShow: function() {

 

  },

 

  /**

   * 生命周期函數--監聽頁面隱藏

   */

  onHide: function() {

 

  },

 

  /**

   * 生命周期函數--監聽頁面卸載

   */

  onUnload: function() {

 

  },

 

  /**

   * 頁面相關事件處理函數--監聽用戶下拉動作

   */

  onPullDownRefresh: function() {

 

  },

 

  /**

   * 頁面上拉觸底事件的處理函數

   */

  onReachBottom: function() {

 

  },

 

  /**

   * 用戶點擊右上角分享

   */

  onShareAppMessage: function() {

 

  }

})

 微信小程序左側欄滑動怎么實現

5、最后保存編輯的代碼進行調試,保存快捷鍵【Ctrl+S】。

在開發工具左側即可看到設計效果。

微信小程序左側欄滑動怎么實現

0
息烽县| 光泽县| 特克斯县| 静宁县| 黄冈市| 莱阳市| 松阳县| 新建县| 逊克县| 册亨县| 沅陵县| 碌曲县| 鹤岗市| 昌江| 洞头县| 昭平县| 晋宁县| 中阳县| 乐山市| 舟曲县| 玉山县| 边坝县| 东莞市| 上饶市| 阳曲县| 山西省| 台中县| 蒙自县| 封丘县| 于都县| 股票| 宁南县| 宝应县| 通州市| 白河县| 咸丰县| 枣强县| 湖北省| 华坪县| 乌拉特中旗| 阿勒泰市|