1.0.4 • Published 6 years ago

bigpicture-react v1.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

bigpicture-react

React Lightbox Component based on BigPicture.js / Video and Image

npm install bigpicture-react --save
yarn add bigpicture-react
import React from 'react';
import { render } from 'react-dom';
import { BPImage, BPVideo, BPYoutube, BPVimeo } from 'bigpicture-react';

render(
    <div>
        <BPImage
          src="http://lorempixel.com/1200/700/sports/1"
          caption="Example of an optional caption."  
        >
            <img src="http://lorempixel.com/400/200/sports/1" />
        </BPImage>

        <BPVideo src="http://www.html5videoplayer.net/videos/toystory.mp4">
            <img src="http://lorempixel.com/400/200/sports/2" />
        </BPVideo>

        <BPYoutube src="https://www.youtube.com/watch?v=v_ThypI2bSo">
            <img src="http://lorempixel.com/400/200/sports/3" />
        </BPYoutube>

        <BPVimeo src="https://vimeo.com/119287310">
            <img src="http://lorempixel.com/400/200/sports/5" />
        </BPVimeo>
    </div>,
  document.querySelector('#root')
);

horizontal with codes

BigPicture by @henrygd https://github.com/henrygd/bigpicture