@masa-dev/react-signage v3.5.9
React Signage
This is a react library for signage.
- Auto slide image and video with cross fade.
- Can toggle fullscreen.
- Preloader to cache to browser (optional)
- If the browser does not support the Fullscreen API, use a pseudo fullscreen display.
See the demo site for example.
Support browser
This library supports Chrome.
Install
npm i @masa-dev/react-signageMinimum usage
import { Signage } from '@masa-dev/react-signage'
import { useState } from 'react'
export default function App() {
const [play, setPlay] = useState(false)
const [fullScreen, setFullScreen] = useState(false)
const items: SignageItem[] = [
{
type: 'image',
src: '/img1.jpg',
second: 3,
},
{
type: 'video',
src: '/video1.mp4'
}]
return <>
<p>Use buttons to get user interaction for playing videos.</p>
<button onClick={() => setPlay(!play)}>{play ? 'Stop' : 'Play'}</button>
<button onClick={() => setFullScreen(!fullScreen)}>
{
fullScreen
? 'Inline'
: document.fullscreenEnabled ? 'FullScreen' : 'Pseudo FullScreen'
}
</button>
<p>Component. If not fullscreen, slideshow is shown below.
To use IndexedDB cache, set 'useDbCache' parameter.
</p>
<Signage
play={play}
fullScreen={fullScreen}
items={items}
useDbCache={true}
/>
<p>Preloader (Optional, but recommended for Safari). Preload media files into IndexedDB.</p>
<Cacher
items={cacheItems}
renderProgress={({ progress, queue }) => <div>
{progress
? <>
loading...
{Math.round(progress.progress * 100)}%
<br />
{progress.src}
</>
: 'done'
}
</div>}
/>
</>
}License
MIT
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago
12 months ago