14

A lightweight react library to create fullpage websites

 4 years ago
source link: https://github.com/FaisalST32/fullpage-react-fs
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

fullpage-react-fs

A lightweight react library to create fullpage websites

Here's a preview

Z77zAzY.gif

You can check out a live demo here

View it being used in my personal blog at faisalrashid.online

Install

npm install --save fullpage-react-fs
or
yarn add fullpage-react-fs

Usage

import React from 'react'

import { FullPageContainer, FullPagePanel } from 'fullpage-react-fs'
import 'fullpage-react-fs/dist/index.css'

export const App = () => {
  return (
    <FullPageContainer showIndicators={true}>

      {/* Panel 1 */}
      <FullPagePanel bgColor='azure'>
        Your Content
      </FullPagePanel>

      {/* Panel 2 */}
      <FullPagePanel bgColor='lightgoldenrodyellow'>
        <div>Goes</div>
      </FullPagePanel>

      {/* Panel 3 */}
      <FullPagePanel>
        <h1>here</h1>
      </FullPagePanel>

    </FullPageContainer>
  )
}

As shown in the sample code above do not forget to import the CSS file.

License

MIT © FaisalST32


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK