前端项目实战之B端常用图片预览组件封装

前言:前端B端开发,常常会用到图片预览的功能,并且实现放大、缩小、左右旋转和下载图片这些常用能力,下面就基于 react-photo-view 这个库实现组件封装

一、组件封装

  • 组件名: PhotoPreview
  • 入口文件:index.tsx
  • 样式文件:index.module.less

index.tsx

import type {
   
    
     FC } from 'react';
import React from 'react';
impor

猜你喜欢

转载自blog.csdn.net/yiguoxiaohai/article/details/127311937