albumCarouselItem.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <template>
  2. <div class="carousel-container">
  3. <!-- 图片列表 -->
  4. <div class="carousel-wrapper" :style="carouselStyle">
  5. <photo-provider v-if="images" :photo-closable="true" @visibleChange="handleVisibleChange">
  6. <template v-for="(photo, index) in images"
  7. :key="photo.id">
  8. <album-draw-box :photo="photo" :current="currentIndex" :index="index" :length="images.length"
  9. ></album-draw-box>
  10. </template>
  11. </photo-provider>
  12. </div>
  13. <!-- 左右箭头 -->
  14. <div @click.stop="prev" v-if="currentIndex !== 0" class="arrow left-arrow">
  15. <el-icon color="#F0D09C"><ArrowLeftBold /></el-icon>
  16. </div>
  17. <div
  18. @click.stop="next"
  19. v-if="images && currentIndex !== images.length - 1"
  20. class="arrow right-arrow"
  21. >
  22. <el-icon color="#F0D09C"><ArrowRightBold /></el-icon>
  23. </div>
  24. </div>
  25. </template>
  26. <script setup>
  27. import { toRefs, ref, computed, onMounted, onUnmounted } from "vue";
  28. import AlbumDrawBox from "./albumDrawBox";
  29. import "./cacheImg.js"
  30. const props =defineProps({
  31. images:{
  32. type: Array,
  33. required: true
  34. }
  35. })
  36. const {images} = toRefs(props);
  37. let timer = null;
  38. const currentIndex = ref(0);
  39. onMounted(() => {
  40. updateImagePosition();
  41. clearAndRestartTimer();
  42. });
  43. onUnmounted(() => {
  44. clearInterval(timer);
  45. });
  46. const updateImagePosition = () => {
  47. carouselStyle.value.transform = `translateX(-${currentIndex.value * 100}%)`;
  48. };
  49. const clickPhotoShow = () => {
  50. if (timer) {
  51. clearInterval(timer)
  52. };
  53. }
  54. // 图片显隐切换回调
  55. const handleVisibleChange = ({visible}) => {
  56. if (visible.value) {
  57. if (timer) {
  58. clearInterval(timer)
  59. }
  60. } else {
  61. clearAndRestartTimer();
  62. }
  63. }
  64. // 计算轮播图样式
  65. const carouselStyle = computed(() => {
  66. return {
  67. transform: `translateX(-${currentIndex.value * 100}%)`,
  68. };
  69. });
  70. // 下一张图片
  71. const next = () => {
  72. // 图片总数
  73. const totalImages = images.value.length;
  74. currentIndex.value = (currentIndex.value + 1) % totalImages;
  75. updateImagePosition();
  76. clearAndRestartTimer();
  77. };
  78. // 上一张图片
  79. const prev = () => {
  80. // 图片总数
  81. const totalImages = images.value.length;
  82. currentIndex.value = (currentIndex.value - 1 + totalImages) % totalImages;
  83. updateImagePosition();
  84. clearAndRestartTimer();
  85. };
  86. const clearAndRestartTimer = () => {
  87. if (timer) {
  88. clearInterval(timer);
  89. }
  90. // timer = setInterval(next, 5000);
  91. };
  92. </script>
  93. <style lang="scss" scoped>
  94. @import "src/styles/index";
  95. .carousel-container {
  96. position: relative;
  97. width: 800px;
  98. height: 600px;
  99. overflow: hidden;
  100. margin: 0 auto;
  101. .carousel-wrapper {
  102. display: flex;
  103. transition: transform 0.5s ease;
  104. width: 100%;
  105. }
  106. .blur-bg {
  107. position: absolute;
  108. top: 0;
  109. width: 100%;
  110. height: 100%;
  111. backdrop-filter: blur(1.4px);
  112. .blur-content {
  113. border-radius: 8px;
  114. background: rgba(0, 0, 0, 0.5);
  115. width: 100%;
  116. height: 100%;
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. justify-content: center;
  121. font-size: 12px;
  122. color: #fff;
  123. .blur-img {
  124. img {
  125. width: 54px;
  126. position: relative;
  127. left: 4px;
  128. top: 4px;
  129. }
  130. }
  131. .blur-text {
  132. padding: 8px 0;
  133. text-align: center;
  134. line-height: 1.5;
  135. }
  136. .blur-btn {
  137. padding: 0 40px;
  138. box-shadow: 0 -2px 2px #86C9FF;
  139. height: 28px;
  140. line-height: 28px;
  141. border-radius: 50px;
  142. background: rgba(33, 153, 248, 0.7);
  143. // background: linear-gradient(#86C9FF, rgba(255, 255, 255, 0));
  144. }
  145. }
  146. }
  147. .arrow {
  148. position: absolute;
  149. top: 50%;
  150. transform: translateY(-50%);
  151. background: rgba(0, 0, 0, 0.5);
  152. width: rpx(72);
  153. height: rpx(72);
  154. border-radius: 50%;
  155. display: inline-flex;
  156. align-items: center;
  157. justify-content: center;
  158. cursor: pointer;
  159. pointer-events: all;
  160. }
  161. .left-arrow {
  162. left: rpx(32);
  163. }
  164. .right-arrow {
  165. right: rpx(32);
  166. }
  167. }
  168. </style>