横向滚动菜单-选中标题居中显示

Posted liruoruo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了横向滚动菜单-选中标题居中显示相关的知识,希望对你有一定的参考价值。

很多时候我们都会遇到这种需求,在移动端端显示导航栏横向内滚动,可以左右滑动,同时将选中的目标元素居中显示。那我们该如何去实现呢,不管是APP,移动端段网页还是小程序,其原理都是相同的,接下来我就拿小程序举个例子,先画个图解释下:

技术分享图片

 

具体步骤:

1.获取当前设备的宽度

 onShow: function () {
    // 获取当前设备的宽度
    this.setData({
      deviceWidth: wx.getSystemInfoSync().windowWidth
    })
  },

2.获取当前元素的宽度以及距离父元素左边的距离offsetleft

  onMove:function(e){
    // 创建节点
    var query = wx.createSelectorQuery();
    //选择id
    var that = this;
    var width = 0
    // 获取当前点击元素的宽度
    query.select(‘#item_‘ + e.currentTarget.dataset.index).boundingClientRect(function (rect) {
      width = rect.width;
      // 激活当前选中项
      that.data.tabmenu.forEach(function (element, index) {
        element.active = false
        if (e.currentTarget.dataset.index == index) {
          element.active = true
        }
      })
      that.setData({
        tabmenu: that.data.tabmenu,
        // 设置选中元素居中显示
        scrollLeft: e.currentTarget.offsetLeft + (width / 2 - that.data.deviceWidth / 2)
      })
    }).exec();
    
  },

3.设置选中元素居中

JS:

scrollLeft: e.currentTarget.offsetLeft + (width / 2 - that.data.deviceWidth / 2)

wxml:

<!-- 标题栏 -->
      <scroll-view class="scroll-view_H" id="scroll-view_H" bindscroll="onScroll" scroll-left="{{scrollLeft}}" scroll-with-animation scroll-x="true">
        <block wx:for="{{tabmenu}}" wx:key="{{index}}">
          <view class="scroll-view-item_H {{item.active?‘active‘:‘‘}} " id="item_{{index}}" data-index="{{index}}" bindtap=‘onMove‘>{{item.name}}</view>
        </block>
      </scroll-view>

data数据

    tabmenu:[{
      name: html,
      active: true
    }, {
      name: ‘CSS‘,
      active: false
    }, {
      name: javascript,
      active: false
    }, {
      name: ‘Es6‘,
      active: false
    }, {
      name: ‘Vue‘,
      active: false
    }]

效果图如下:

技术分享图片

 

以上是关于横向滚动菜单-选中标题居中显示的主要内容,如果未能解决你的问题,请参考以下文章

有没有html代码能让网页的横向滚动条默认居中?

这是控制浏览器的横向滚动条居中的代码,可是不兼容火狐,高手帮忙改改..

页面如何默认div的横向滚动条居中或者是居右呢?请各位高手指点!

iOS 利用UICollectionView横向滚动余弦函数曲线特性实现居中放大的卡片浏览工具 XLCardSwitch

ionic 横向滚动的菜单

可滚动UIStackView 竖向居中 / 横向右对齐