vue实现左右两列竖直分别滑动,且双向关联的选项卡

Posted wd163

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue实现左右两列竖直分别滑动,且双向关联的选项卡相关的知识,希望对你有一定的参考价值。

先完成‘左右两列竖直分别滑动,相互之间不存在任何关联’的页面样式:

<t技术图片

 

 

emplate>
<div>
  <div class="flex-between">
    <div class="left">
      <span v-for="n in 16" :key="n">{{n}}</span>
    </div>
    <div class="right">
      <span v-for="m in 8" :key="m">{{m}}</span>
    </div>
  </div>
</div>
</template>
<style scoped>
.left, .right{
  overflow-y: auto;
  height: 667px;//高度是指滚动窗口的高度,必须有
}
.left{
  width: 20%;
}
.right{
  width: 80%;
}
.left span{
   background: forestgreen;
}
.right span{
   background: red;
   height: 300px;
}
</style>

以上是关于vue实现左右两列竖直分别滑动,且双向关联的选项卡的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序实现上下左右滑动触发联动选项卡绝对值事件parsestringifyMathatanabsfindIndex

微信小程序实现角度或左右滑动触发联动选项卡绝对值事件parsestringifyMathatanabsfindIndex

vue 怎样实现hover效果

html能否实现手机端左右滑动切换不同的页面

TabTopAutoLayout自定义顶部选项卡区域(带下划线)(动态选项卡数据且可滑动)

mui顶部选项卡(可左右滑动)分页跳转