react-sticky-stack

0.0.1 • Public • Published

Build Status

React Sticky Stack

A Sticky Stack component for React.js

Demo

https://react-sticky-stack.herokuapp.com

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import {StickyStackContext, StickyStackItem} from 'react-sticky-stack';
 
const App = React.createClass({
  render() {
    return (
      <StickyStackContext>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={0}>
          <h1>
            Live
          </h1>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={1}>
          <h2>
            Your
          </h2>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
        <StickyStackItem position={2}>
          <h3>
            City
          </h3>
        </StickyStackItem>
        <p>
          Lorem Ipsum
        </p>
      </StickyStackContext>
    );
  },
});
 
ReactDOM.render(<App />, document.getElementById('app'));

Package Sidebar

Install

npm i react-sticky-stack

Weekly Downloads

6

Version

0.0.1

License

MIT

Last publish

Collaborators

  • bencd
  • conatus
  • lucasmotta
  • michelebertoli