diff --git a/README.md b/README.md index 81085bb..5b1e57c 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ [![](https://img.shields.io/npm/v/@intive-org/react-stories.svg)](https://www.npmjs.com/package/@intive-org/react-stories) ![](https://camo.githubusercontent.com/df1fd6655472a008d21057736be3b95a2bced4e9ea6db7c393e7c960a4d9e450/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f2532302532302546302539462539332541362546302539462539412538302d73656d616e7469632d2d72656c656173652d6531303037392e737667) +![](https://camo.githubusercontent.com/83d3746e5881c1867665223424263d8e604df233d0a11aae0813e0414d433943/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667) +![](https://img.shields.io/npm/dw/@intive-org/react-stories) It's a fork from [https://github.com/mohitk05/react-insta-stories](https://github.com/mohitk05/react-insta-stories) diff --git a/example/src/App.css b/example/src/App.css index cdae19b..41a6d4b 100644 --- a/example/src/App.css +++ b/example/src/App.css @@ -4,6 +4,9 @@ body { font-family: sans-serif; background: rgb(170,221,96); background: linear-gradient(152deg, rgba(170,221,96,1) 0%, rgba(2,128,92,1) 45%, rgba(255,153,83,1) 100%); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; } p { diff --git a/example/src/App.js b/example/src/App.js index 30052b8..f35d990 100644 --- a/example/src/App.js +++ b/example/src/App.js @@ -1,5 +1,6 @@ import React, {useState, useEffect} from 'react'; import Stories, { WithSeeMore } from '@intive-org/react-stories' +import {customRenderer} from './custom-renderer' import './App.css'; function App() { @@ -15,6 +16,8 @@ function App() { loop: false }) + const [customRenderers] = useState([customRenderer]) + const updateWebConsole = (...args) => { setWebConsole(prev => { prev.unshift(args.join(' ')) @@ -82,6 +85,8 @@ function App() { + +
Create Instagram like stories on the web using React @@ -202,8 +207,9 @@ function App() { width={'100%'} height={'100%'} keyboardNavigation - defaultInterval={5000} + defaultInterval={3000} stories={stories2} + renderers={customRenderers} onStoryEnd={(s, st) => updateWebConsole('story with index ' + s + ' ended')} onAllStoriesEnd={(s, st) => updateWebConsole('all stories ended', s)} onStoryStart={(s, st) => updateWebConsole('story with index ' + s + ' started')} @@ -240,14 +246,18 @@ const stories2 = [ seeMore: ({ close }) =>
Go on, close this popup.
Go on, close this popup.
+