中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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

楓吟
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
罗平县| 溧阳市| 开封县| 秦皇岛市| 永顺县| 海丰县| 呈贡县| 莫力| 雅江县| 吴桥县| 永靖县| 哈尔滨市| 胶州市| 平昌县| 贵德县| 安塞县| 大名县| 金山区| 鹤壁市| 根河市| 尚义县| 平舆县| 北安市| 大安市| 泰州市| 穆棱市| 合作市| 上蔡县| 韶关市| 泰兴市| 定西市| 巴林左旗| 海门市| 灵川县| 襄城县| 革吉县| 翁牛特旗| 玉龙| 正镶白旗| 桓台县| 泰安市|