Skip to content

witImageViewer Image Viewer

witImageViewer is a powerful image viewer component based on Element Plus icon library, supports image zoom, rotate, move, switch and other operations, suitable for scenarios that need to view and manipulate images.

Usage Example

vue
<template>
  <div>
    <witImageViewer
      :url-list="imageList"
      :width="'800px'"
      :height="'600px'"
    />
  </div>
</template>

<script lang="ts" setup>
import { ref } from 'vue'

// Image list data
const imageList = ref([
  'https://example.com/image1.jpg',
  'https://example.com/image2.jpg',
  'https://example.com/image3.jpg'
])
</script>

API

Component

Component NameDescription
witImageViewerImage viewer main component

Properties

Property NameTypeDefault ValueDescription
urlListArray[]Image URL list
widthString'100%'Viewer width
heightString'100%'Viewer height

Features

Image Operations

  • Supports mouse wheel zoom
  • Supports click button to zoom in/out

湘ICP备2024070110号