• 数据图册页面(左边一列图片缩略图,右边展示图片大图)


    最近要写这么一个页面,左侧一列图片缩略图,点击左侧缩略图后有选中效果,然后右侧展示图片原图,还能够左右翻页查看。
    最后写了一个demo出来,demo还不是很完善,需要自己修改,后面我也给出了修改建议。

    demo的最终效果:

    在这里插入图片描述

    我这里数据是写死的:
    url是获取的本地图片,测试时候可以直接这样写。
    到时候有数据时,直接把url封装到这个数组结构中就可以了。
    在这里插入图片描述

    修改说明

    这里说一下我对这个demo的修改,供大家参考:
    1、我这里在左侧加了滚动条,查看缩略图列表,用的是el的这个组件

    2、右侧大图我又加了点击放大查看,用的是el的的:preview-src-list属性,给这个属性绑定一个url数组,可以把这个对象数组的url属性封装到一个url数组中。

    可以参考elementui官网的大图预览:
    https://element.eleme.io/#/zh-CN/component/image

    3、这个样式是左侧缩略图选中时的灰色选中效果,可以自行修改颜色。
    .thumbnail.active {
    background-color: #ccc;
    }
    4、可以把右侧大图的宽度定死,这样图片跳转按钮就不会来回跳了
    5、还可以把跳转按钮做成循环的,这样到最后一页再跳转的时候就会直接到第一页。
    循环的写法:
    就是多加一个else判断

    // 上一张图片
          prevImage() {
            if (this.currentIndex > 0) {
              this.currentIndex--;
            } else {
              this.currentIndex = this.images.length - 1;
            }
          },
          // 下一张图片
          nextImage() {
            if (this.currentIndex < this.images.length - 1) {
              this.currentIndex++;
            } else {
              this.currentIndex = 0;
            }
          },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    页面源代码

    <template>
      
      <div class="image-gallery">
        
        <div class="thumbnail-list">
          <div
            v-for="(image, index) in images"
            :key="index"
            :class="['thumbnail', { active: index === currentIndex }]"
            @click="setCurrentIndex(index)"
          >
            <img :src="image.url" alt="Thumbnail" />
            <div class="image-name">{{ image.name }}div> 
          div>
        div>
    
        
        <div class="image-viewer">
          <div class="image-container">
            
            <div class="arrow left" @click="prevImage">div>
    
    
    
            
            <div class="image-wrapper">
              <div class="image-name">{{ currentImage.name }}div> 
              <div class="image-name">{{ currentImage.summary }}div> 
              <img :src="currentImage.url" alt="Full Size Image" />
            div>
    
            
            <div class="arrow right" @click="nextImage">div>
          div>
        div>
      div>
    template>
    
    <script>
      export default {
        data() {
          return {
            // 图片对象数组,包含链接和名称
            images: [
              { url: require('@/assets/01.png'), name: '图片1' ,summary:'图片介绍'},
              { url: require('@/assets/02.png'), name: '图片2' ,summary:'图片介绍'},
              { url: require('@/assets/03.png'), name: '图片3' ,summary:'图片介绍'},
            ],
            // 当前选中的图片索引,初始值为 0
            currentIndex: 0,
          };
        },
        computed: {
          // 计算属性,返回当前选中的图片对象
          currentImage() {
            return this.images[this.currentIndex];
          },
        },
        methods: {
          // 设置当前选中的图片索引
          setCurrentIndex(index) {
            this.currentIndex = index;
          },
          // 上一张图片
          prevImage() {
            if (this.currentIndex > 0) {
              this.currentIndex--;
            }
          },
          // 下一张图片
          nextImage() {
            if (this.currentIndex < this.images.length - 1) {
              this.currentIndex++;
            }
          },
        },
      };
    script>
    
    <style scoped>
    
      .image-gallery {
        display: flex;
        height: 100vh;
      }
    
      .thumbnail-list {
        width: 200px;
        background-color: #f5f5f5;
        overflow-y: auto;
      }
    
      .thumbnail {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #ccc;
      }
    
      .thumbnail img {
        width: 100%;
      }
    
      .thumbnail.active {
        background-color: #ccc;
      }
    
      .image-viewer {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    
      .image-container {
        position: relative;
      }
    
      .arrow {
        position: absolute;
        top: 50%;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.3);
        padding: 4px 8px;
      }
    
      .arrow.left {
        left: 10px;
      }
    
      .arrow.right {
        right: 10px;
      }
    
      img {
        max-width: 100%;
        max-height: 100%;
      }
      .image-name {
        margin-top: 5px; /* 图片名称与缩略图之间的上边距 */
        text-align: center; /* 居中显示图片名称 */
      }
      /*小的图片查看器样式*/
      .image-wrapper {
      /*      position: relative;*/
        margin-top: 40px;
        }
    style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
  • 相关阅读:
    MySQL----函数
    对加密世界的经济误解:现金是储蓄?稀缺性创造价值?
    信号量机制实现进程互斥,进程同步,进程的前驱关系
    Java入门-07-Java学习-JDK下载和安装
    R语言使用lightgbm包构建二分类的LightGBM模型、lgb.plot.importance函数可视化二分类模型特征重要度的排序条形图
    Apache Doris 基于 Workload Group 的负载隔离能力解读|Deep Dive
    C#Web开发之blazor体验
    去中心遇见混币器
    1.实验技术-收藏吃灰去,深入浅出常规PCR
    堆-c语言实现
  • 原文地址:https://blog.csdn.net/Keep__Me/article/details/133922278