当前位置:   article > 正文

uniapp scroll-view顶部固定定位_var(--window-top)

var(--window-top)

scroll-view的top设为top:var(--window-top); 提高等级 z-index

再把下面的内容一个外边距=scroll-view的高度

  1. <template>
  2. <view>
  3. <view>
  4. <scroll-view scroll-x="true" class="tab">
  5. <view v-for="(item,index) in 20" class="bar" :class="index==highylig? 'active':''" @click="queittba(index)">国内</view>
  6. </scroll-view>
  7. <view class="content">
  8. <view v-for="item in 20" style="margin: 20rpx 0;">
  9. <list></list>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. highylig:''
  20. }
  21. },
  22. methods: {
  23. queittba(e){
  24. this.highylig=e
  25. }
  26. },
  27. }
  28. </script>
  29. <style scoped lang="less">
  30. .tab{
  31. position: fixed;
  32. height: 100rpx;
  33. background-color: #f7f7f7;
  34. white-space: nowrap;
  35. top:var(--window-top);
  36. z-index: 2;
  37. left: 0;
  38. ::-webkit-scrollbar {
  39. display: none;
  40. }
  41. .bar{
  42. font-size: 40rpx;
  43. display: inline-block;
  44. line-height: 100rpx;
  45. margin: 0 10rpx;
  46. &.active{
  47. color: red;
  48. }
  49. }
  50. }
  51. .content{
  52. margin-top:100rpx;
  53. }
  54. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/312514
推荐阅读
相关标签
  

闽ICP备14008679号