摘要: 需求:滚动到一定位置,固定,不再滚动,实现吸顶效果。 思路一: 使用原生滚动,给需要吸顶的组件添加样式 .tab-control{ position: sticky; /* 从顶部向下滚动44px,固定,不在向下滚动。向上y小于44px恢复滚动*/ top: 44px } 思路二: hack的方法( 阅读全文
posted @ 2020-02-20 00:09 zwnsyw 阅读(547) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="tab-control"> <div v-for="(item , index) in title" class="tab-control-item" :class="{active: index currentIndex}" @click='itemC 阅读全文
posted @ 2020-02-20 00:02 zwnsyw 阅读(25296) 评论(0) 推荐(0) 编辑