npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-img-preview

v1.0.2

Published

A react image preview plugin

Downloads

16

Readme

react preview plugin

一个React集成PhotoSwipe移动端PC端图片预览插件

Demo

demo.gif

Requirements

PhotoSwipe

Installation

npm i react-img-preview -S

Usage

Import plugin

import Preview from 'react-img-preview'

Examples

import React from 'react'
import ReactDOM from 'react-dom'
// 导入预览组件
import Preview from 'react-img-preview'

// 专门用于测试的组件
class Test extends React.Component {
  constructor() {
    super()
    this.state = {
      // 所有要进行预览的图片
      // 每一个图片对象,都要包含如下三个属性:{src, w, h}
      // 其中:
      // src 是图片的地址
      // w 是图片预览时候的宽度
      // h 是图片预览时候的高度
      items: [
        {
          src: 'https://placekitten.com/600/400',
          w: 600,
          h: 400
        },
        {
          src: 'https://placekitten.com/1200/900',
          w: 1200,
          h: 900
        }
      ]
    }
  }

  render() {
    return <div>
      <Preview
        // 【必填】指定 要预览的图片数组
        imglist={this.state.items}
        // 【previewBoxStyle 可选】设置 缩略图容器的样式
        previewBoxStyle={{ border: '1px solid #eee' }}
        // 【thumbImgStyle 可选】设置 缩略图的样式
        thumbImgStyle={{ margin: 10, width: 100, height: 100 }}>
      </Preview>
    </div>
  }
}

// 把 虚拟DOM挂载到页面上
ReactDOM.render(<div>
  <Test></Test>
</div>, document.getElementById('app'))

API

| 属性 | 类型 | 作用 | | --------------- | ------------------ | ------------------------------------------------------------ | | imglist | Array数组,必填 | 指定需要进行预览时候的图片数组;数组中每个图片信息,都应该是包含如下三个属性的对象例如: {src: '图片地址', w: 宽度值, h: 高度值} | | previewBoxStyle | Object对象,可选 | 设置缩略图外层容器div的style样式 | | thumbImgStyle | Object对象,可选 | 设置每个缩略图的style样式,默认每张图片宽高各为 100px、且有 10px 的 margin |

Quick Start

可以直接clone源代码,npm install安装依赖包,运行 npm run dev 快速查看项目效果!

  1. git clone [email protected]:daidaitu1314/react-img-preview.git
  2. cd 到项目根目录运行 npm install
  3. npm run dev 快速启动

License