1.0.0 • Published 3 years ago

@jswork/react-smart-photo v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

react-smart-photo

The most easy to use responsive image viewer especially for mobile devices for react.

version license size download

installation

npm install -S @jswork/react-smart-photo

properties

NameTypeRequiredDefaultDescription
classNamestringfalse-The extended className for component.
namestringfalse-The group name.
itemsarrayfalse[]Image source set.
optionsobjectfalse-SmartPhoto options. see: https://github.com/appleple/SmartPhoto

usage

  1. import css

    // or use sass
    @import "~smartphoto/scss/smartphoto.scss";
    @import "~@jswork/react-smart-photo/dist/style.scss";
    
    // customize your styles:
    $react-smart-photo-options: ()
  2. import js

    import ReactDemokit from '@jswork/react-demokit';
    import React from 'react';
    import ReactDOM from 'react-dom';
    import ReactSmartPhoto from '@jswork/react-smart-photo';
    import NxRandomAvatar from '@jswork/next-random-avatar';
    import './assets/style.scss';
    
    class App extends React.Component {
      constructor(props) {
        super(props);
        this.state = {
          items: NxRandomAvatar.women(5).map((item) => {
            return {
              id: '80',
              href: item,
              src: item
            };
          })
        };
      }
      render() {
        const { items } = this.state;
        return (
          <ReactDemokit
            className="p-3 app-container"
            url="https://github.com/afeiship/react-smart-photo">
            <ReactSmartPhoto
              name="g1"
              items={[
                {
                  href: NxRandomAvatar.lego(),
                  src: NxRandomAvatar.lego(),
                  id: '80'
                }
              ]}
            />
    
            <hr />
    
            <ReactSmartPhoto name="g2" items={items} />
          </ReactDemokit>
        );
      }
    }
    
    ReactDOM.render(<App />, document.getElementById('app'));

documentation

license

Code released under the MIT license.