当前位置:网站首页>uni-app 顶部选项卡吸附效果 demo(整理)
uni-app 顶部选项卡吸附效果 demo(整理)
2022-08-03 07:49:00 【我是开心呀】
效果图:
<template>
<view>
<!-- 顶部banner图 -->
<view class="ding">banner</view>
<!-- tab 滑动 -->
<view :class="{'st':true,'sticky-fixed':isF}">
<!-- tab部分 -->
<swiper class="ct_tab">
<swiper-item :class="{ 'ct_active': index == tabCur }" v-for="(item, index) in tabList" :key="index"
class="ct_item" @click="clickCtTab(index)">
<text v-text="item.title"></text>
</swiper-item>
</swiper>
</view>
<!-- 内容 -->
<view class="xiala">
<!-- 内容信息 -->
<view v-if="tabCur===0">
<view>全部信息</view>
<view>111111111111111111111111111</view>
<view>222222222222222222222222222</view>
<view>333333333333333333333333333</view>
</view>
<view v-if="tabCur===1">
<view>水果</view>
<view>111111111111111111111111111</view>
<view>222222222222222222222222222</view>
<view>333333333333333333333333333</view>
</view>
<view v-if="tabCur===2">
<view>蔬菜</view>
</view>
<view v-if="tabCur===3">
<view>调味品</view>
</view>
<view v-if="tabCur===4">
<view>肉类</view>
</view>
<view v-if="tabCur===5">
<view>油类</view>
</view>
<view v-if="tabCur===6">
<view>米类</view>
</view>
<view v-if="tabCur===7">
<view>海鲜</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
// 下拉固定
yuanH: uni.upx2px(200),
isF: false,
// 滑动tab
tabCur: 0,
tabList: [{
title: '全部',
}, {
title: '水果',
}, {
title: '蔬菜',
}, {
title: '调味品',
}, {
title: '肉类',
}, {
title: '油类',
}, {
title: '米类',
}, {
title: '海鲜',
}],
};
},
onPageScroll(e) {
//#ifdef H5
this.isF = true
// #endif
// #ifndef H5
if (this.yuanH > e.scrollTop) {
this.isF = false
} else {
this.isF = true
}
// #endif
},
methods: {
clickCtTab(ctCur) {
this.tabCur = ctCur
console.log('点击了--->' + this.tabCur)
}
},
};
</script>
<style lang='scss' scoped>
/* 顶部 banner */
.ding {
height: 200rpx;
background-color: aquamarine;
}
.st {
height: 90rpx;
width: 750rpx;
background-color: #fff;
z-index: 999;
/* top: 300rpx; */
}
.sticky-fixed {
/* #ifdef H5 */
position: sticky;
top: 44rpx;
/* #endif */
/* #ifndef H5 */
position: fixed;
top: 0;
/* #endif */
z-index: 999;
}
.xiala {
height: 1500px;
background-color: #eee;
padding-top: 100rpx;
}
/* 滑动tab */
.ct_tab {
width: 698rpx;
height: 90rpx;
margin: 0 auto;
/* padding: 30rpx 0; */
font-size: 28rpx;
/* font-weight: bold; */
color: #c0c8d0;
white-space: nowrap;
display: flex;
overflow: hidden;
}
.ct_item {
width: 150rpx;
padding: 20rpx 0;
display: inline-block;
}
.ct_item text {
padding: 20rpx 0;
}
.ct_active {
color: #007AFF;
font-weight: bold;
}
.ct_active text {
border-bottom: 2px solid #007AFF;
}
swiper {
width: 100%;
}
swiper-item {
width: 150rpx !important;
}
</style>
原文链接:https://blog.csdn.net/qq_59795720/article/details/125004913?spm=1001.2014.3001.5502
边栏推荐
猜你喜欢
随机推荐
mysql的innodb存储引擎和myisam存储引擎的区别
"Swordsman Offer" brush questions print from 1 to the largest n digits
mysql5.7服务器The innodb_system data file 'ibdata1' must be writable导致无法启动服务器
- display image API OpenCV 】 【 imshow () to a depth (data type) at different image processing methods
面试介绍项目经验(转)
MySQL or使索引失效
Daily practice of PMP | Do not get lost in the exam-8.2 (including agility + multiple choice)
pyspark @udf loop using variable problem
pyspark---low frequency feature processing
Docker启动mysql
积分商城系统设计
如何像用自来水一样使用数据库?|腾讯云数据库TDSQL-C
标准输入流
23届微软秋招内推
AI mid-stage sequence labeling task: three data set construction process records
训练正常&异常的GAN损失函数loss变化应该是怎么样的
酷雷曼上新6大功能,全景营销持续加码
推荐系统-排序层-精排模型:LR、GBDT、Wide&Deep、DCN、DIN、DIEN、MMOE、PLE
The ORB - SLAM2 extracting feature points
Golang协程goroutine的调度与状态变迁分析