gf-scroll.vue 3.2 KB

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