mt-preview-image

1.0.1 • Public • Published

mt-preview-image

A light-weight React mt-carousel component with extremely easy API(只适用于移动端项目). Online Demo, welcome code review

Installation

npm install mt-preview-image --save

Usage

import React, { PureComponent } from 'react';
import img1 from './static/images/11.jpg';
import img2 from './static/images/12.jpg';
import img3 from './static/images/13.jpg';
import img4 from './static/images/14.jpg';
import img5 from './static/images/15.jpg';
import img6 from './static/images/16.png';
import img7 from './static/images/17.png';
import PreviewImage from 'mt-preview-image';
import './app.css';

const source = [img1, img2, img3, img4, img5, img6, img7];
export default class App extends PureComponent {
  constructor() {
    super();
    this.state = {
      visible: false,
      index: 0,
    };
  }

  handleTriggle = (idx) => {
    this.setState(prevState => ({ visible: true, index: idx }));
  }

  handleClose = (index) => {
    this.setState({ visible: false, index })
  }

  render() {
    const { visible, index } = this.state;
    return (
      <div className="container">
        <p>请切换到移动模式,并刷新后在查看</p>
        <div className="button" onClick={() => this.handleTriggle(index)}>点击查看</div>
        <div className="button" onClick={() => this.handleTriggle(3)}>点击查看</div>
        <div className="button" onClick={() => this.handleTriggle(4)}>点击查看</div>
        <PreviewImage
          source={source}
          index={index}
          visible={visible}
          indicatorClass="indicator"
          onClose={this.handleClose}
        />
      </div>
    );
  }
}

props

param detail type default
source store a collection of image src attributes array []
index show image of index number 0
visible whether to display components bool false
indicatorClass add a class name to the indicator string ''
onClose how to close a component func

Package Sidebar

Install

npm i mt-preview-image

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

26.8 kB

Total Files

8

Last publish

Collaborators

  • shenxuxiang