gf-scroll.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="scroll1-box">
  3. <scroll-view scroll-x="true" @scroll="scroll" class="scroll-view" :bounces="false" enhanced="true" scroll-anchoring="true">
  4. <view class="tabs-scroll-box u-flex u-flex-wrap" :style="{width:scrollWidth * 25 + '%'}">
  5. <view class="tabs-item u-flex-col u-col-center" :style="{width:100 / scrollWidth + '%'}" v-for="(item,index) in list" :key="index" @click="tourl(item)">
  6. <image :src="item.logo" mode=""></image>
  7. <text>{{item.title}}</text>
  8. </view>
  9. </view>
  10. </scroll-view>
  11. <view class="hidescroll"></view>
  12. <view class="scroll-box">
  13. <view class="scroll" :style="{transform: `translateX(${sX})`,width:s_b_W}"></view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name: "rt-scroll",
  20. props: {
  21. list: {
  22. type: Array,
  23. default: () => {
  24. return []
  25. }
  26. },
  27. },
  28. data() {
  29. return {
  30. sX: '0%', //等比偏移量
  31. c_W: 0, //最外围容器宽度
  32. c_b_W: 0, //最外围容器内容宽度
  33. s_b_W: '0px', //自定义滚动条移动盒子宽度
  34. tablist: [],
  35. scrollWidth: 0
  36. };
  37. },
  38. watch: {
  39. list: {
  40. handler() {
  41. this.getwidth()
  42. },
  43. deep: true
  44. }
  45. },
  46. created() {
  47. this.getwidth()
  48. },
  49. methods: {
  50. getwidth() {
  51. this.scrollWidth = Math.ceil(this.list.length / 2)
  52. this.$nextTick(() => {
  53. this.getdocument()
  54. })
  55. // console.log(this.scrollWidth);
  56. },
  57. tourl(item) {
  58. this.$emit('click', item)
  59. },
  60. scroll(e) {
  61. if ((this.c_b_W - this.c_W) < 0) {
  62. return
  63. }
  64. let nX = e.detail.scrollLeft // 得到滑动的偏移量
  65. var zong = this.c_b_W - this.c_W //总的偏移量
  66. this.sX = nX / zong * 100 + '%'
  67. },
  68. getdocument(){
  69. const query = uni.createSelectorQuery().in(this);
  70. query.selectAll('.scroll-view,.tabs-scroll-box').boundingClientRect((data) => {
  71. // dome元素从外到内依次获取数据,所以写法按顺序来才不会混
  72. this.c_W = data[0].width
  73. this.c_b_W = data[1].width
  74. this.s_b_W = (this.c_b_W - this.c_W) <= 0 ? "100%" : "15px"
  75. // console.log(this.c_W, this.c_b_W);
  76. }).exec();
  77. }
  78. },
  79. }
  80. </script>
  81. <style lang="scss">
  82. .scroll1-box {
  83. padding-top: 2rpx;
  84. width: 702rpx;
  85. // height: 404rpx;
  86. background: #FFFFFF;
  87. border-radius: 20rpx;
  88. padding-bottom: 28rpx;
  89. position: relative;
  90. .hidescroll{
  91. position: absolute;
  92. width: 702rpx;
  93. height: 20rpx;
  94. background-color: #fff;
  95. left: 0;
  96. bottom: 38rpx;
  97. z-index: 10;
  98. }
  99. .scroll-view {
  100. padding-top: 12rpx;
  101. .tabs-scroll-box {
  102. padding: 0 4rpx;
  103. .tabs-item {
  104. width: 25%;
  105. margin: 20rpx 0 12rpx 0;
  106. image {
  107. width: 84rpx;
  108. height: 84rpx;
  109. margin-bottom: 20rpx;
  110. border-radius: 20rpx;
  111. }
  112. text {
  113. font-size: 24rpx;
  114. font-family: PingFangSC-Regular, PingFang SC;
  115. font-weight: 400;
  116. color: #131415;
  117. }
  118. }
  119. }
  120. }
  121. .scroll-box {
  122. width: 30px;
  123. height: 10rpx;
  124. background: rgba(30, 125, 255, 0.2);
  125. border-radius: 5rpx;
  126. margin: 10rpx auto 0 auto;
  127. .scroll {
  128. height: 100%;
  129. background: #1E7DFF;
  130. border-radius: 5rpx;
  131. }
  132. }
  133. }
  134. </style>