lgSwiper.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="container">
  3. <swiper class="swiper" :circular="true" :autoplay="false" :duration="500" :previous-margin="'200rpx'"
  4. :next-margin="'200rpx'" :style="{ height: '300rpx' }" :current="currentIndex"
  5. :easing-function="easeInOutCubic"
  6. @change="changeCurrent">
  7. <swiper-item v-for="(slide, index) in processedSildeItems" :key="index" style="overflow: initial;"
  8. :class="index==currentIndex? 'swiper-item-active':'swiper-item-normal'" @click="swiperClick(slide)">
  9. <view :class="index==currentIndex? 'swiper-item active':'swiper-item'">
  10. <image style="width: 100%;height: 90%;" mode="aspectFill" :src="slide[image]"></image>
  11. <text class="swiper-text">{{ slide[title] }}</text>
  12. </view>
  13. </swiper-item>
  14. </swiper>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. currentIndex: 0
  22. };
  23. },
  24. methods: {
  25. changeCurrent(e) {
  26. this.currentIndex = e.detail.current
  27. },
  28. swiperClick(data){
  29. this.$emit('swiperClick', data);
  30. }
  31. },
  32. props: {
  33. sildeItems: {
  34. type: Array,
  35. required: true
  36. },
  37. image: {
  38. type: String,
  39. required: false,
  40. default: "image"
  41. },
  42. title: {
  43. type: String,
  44. required: false,
  45. default: "title"
  46. }
  47. },
  48. computed: {
  49. processedSildeItems() {
  50. return [...this.sildeItems, ...this.sildeItems];
  51. }
  52. }
  53. };
  54. </script>
  55. <style lang="scss" scoped>
  56. .container {
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .swiper {
  62. width: 100%;
  63. overflow: visible;
  64. /* 确保部分滑块可见 */
  65. height: 100%;
  66. padding: 0 25rpx;
  67. }
  68. .swiper-item-active {
  69. z-index: 10;
  70. display: flex;
  71. align-items: center;
  72. .swiper-text {
  73. font-weight: bold;
  74. }
  75. }
  76. .swiper-item-normal {
  77. z-index: 1;
  78. display: flex;
  79. align-items: center;
  80. }
  81. .swiper-item {
  82. display: flex;
  83. height: 80%;
  84. width: 85%;
  85. margin: 0 auto;
  86. justify-content: flex-end;
  87. align-items: center;
  88. font-size: 16rpx;
  89. border-radius: 10px;
  90. flex-direction: column;
  91. color: #000;
  92. .swiper-text {
  93. white-space: nowrap;
  94. overflow: hidden;
  95. text-overflow: ellipsis;
  96. margin-top: 10rpx;
  97. }
  98. }
  99. .active {
  100. // display: flex;
  101. height: 100%;
  102. width: 93%;
  103. margin: auto;
  104. justify-content: center;
  105. font-size: 25rpx;
  106. .swiper-text {
  107. white-space: nowrap;
  108. overflow: hidden;
  109. text-overflow: ellipsis;
  110. }
  111. }
  112. </style>