React wrapper for Stickyfill library
npm install react-stickyfill --save
Simple usage:
import React from 'react';
import Sticker from 'Stickyfill';
const SomeComponent = React.createClass({
render(){
return (
<div>{/* Parent Element. */}
<Sticker>
<div>{/* Sticky Element */}</div>
</Sticker>
</div>
);
}
});
Parent Element should have height greater than Sticky Element. Sticky Element should have style position: sticky
and top: {some value}
.