{"id":17002707,"url":"https://github.com/thierryc/react-fullpage","last_synced_at":"2025-04-05T22:10:55.510Z","repository":{"id":33116328,"uuid":"140109418","full_name":"thierryc/react-fullpage","owner":"thierryc","description":"Create Fullscreen Scrolling Websites","archived":false,"fork":false,"pushed_at":"2023-06-10T07:23:42.000Z","size":4597,"stargazers_count":206,"open_issues_count":30,"forks_count":25,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-02T21:42:24.548Z","etag":null,"topics":["fullpage","react","reactjs","ui"],"latest_commit_sha":null,"homepage":"https://thierryc.github.io/react-fullpage/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thierryc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-07T18:48:08.000Z","updated_at":"2025-03-14T20:23:23.000Z","dependencies_parsed_at":"2024-06-18T19:57:07.742Z","dependency_job_id":"9229a0de-8d67-4ba5-9cf5-2bb15ab77fd7","html_url":"https://github.com/thierryc/react-fullpage","commit_stats":{"total_commits":129,"total_committers":3,"mean_commits":43.0,"dds":0.2093023255813954,"last_synced_commit":"bc202b25e4a0f6e5efb510f5468f3d1ed70f861f"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thierryc%2Freact-fullpage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thierryc%2Freact-fullpage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thierryc%2Freact-fullpage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thierryc%2Freact-fullpage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thierryc","download_url":"https://codeload.github.com/thierryc/react-fullpage/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247406111,"owners_count":20933806,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fullpage","react","reactjs","ui"],"created_at":"2024-10-14T04:28:47.012Z","updated_at":"2025-04-05T22:10:55.476Z","avatar_url":"https://github.com/thierryc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @ap.cx/react-fullpage\n\nhttps://thierryc.github.io/react-fullpage/\n\nanother demo:\n\nhttps://thierryc.github.io/react-fullpage-example/\n\nThis project is still in a very **early stage**.\nYou shouldn't use this for production unless you really know what you're doing. 🖖\n\n## Features\n\n- Design for Mobile, Tablet, and Desktop\n- Nested Component (simple to use)\n- Hide safari's header on Scroll on iphone and ipad\n- Hide Google Chrome's header on Scroll on iOS and Android\n- Drived by the scroll\n- CSS animation\n- GPU/CPU swtich\n- Very Small ( ~ 25kB )\n- MIT License (no fullpage.js dependency)\n\n\u003e Create Fullscreen Scrolling Websites\n\n[![NPM](https://img.shields.io/npm/v/@ap.cx/react-fullpage.svg)](https://www.npmjs.com/package/react-fullpage)\n[![MIT](https://img.shields.io/packagist/l/doctrine/orm.svg)](https://github.com/thierryc/react-fullpage/blob/master/LICENSE)\n\n## Install\n\n```bash\nnpm install --save @ap.cx/react-fullpage\n```\n## Usage\n\n```jsx\n\nimport React, { Component } from 'react'\nimport Fullpage, { FullPageSections, FullpageSection } from '@ap.cx/react-fullpage'\n\nexport default class App extends Component {\n  render () {\n    return (\n      \u003cFullpage\u003e\n\n        \u003cFullPageSections\u003e\n\n          \u003cFullpageSection style={{\n            backgroundColor: 'lime',\n            height: '80vh',\n            padding: '1em',\n          }}\u003e1\u003c/FullpageSection\u003e\n          \u003cFullpageSection style={{\n            backgroundColor: 'coral',\n            padding: '1em',\n          }}\u003e2\u003c/FullpageSection\u003e\n          \u003cFullpageSection style={{\n            backgroundColor: 'firebrick',\n            padding: '1em',\n          }}\u003e3\u003c/FullpageSection\u003e\n\n        \u003c/FullPageSections\u003e\n\n      \u003c/Fullpage\u003e\n    )\n  }\n}\n\nMigation from previous version.\nAdd the ``` \u003cFullPageSections\u003e ... \u003c/FullPageSections\u003e```\n\n```\n\n### For IE\n\n```\n\nnpm i babel-polyfill\n\n```\n\n```\nimport \"babel-polyfill\";\n\n```\n\n\n## Mobile First\n\n![Android Phone](https://raw.githubusercontent.com/thierryc/react-fullpage/master/static/images/android-phone.jpg)\n\n\n## Dev\n\nopen 2 terminal\n\nIn the first terminals windows.\n\n\n```\n\n\u003e npm i\n\u003e npm link\n\u003e npm start\n\n```\n\n\nIn the second terminal\n\n```\n\n\u003e cd example\n\u003e npm i\n\u003e npm link @ap.cx/react-fullpage\n\u003e npm start\n\n```\n\n\n## Thanks\n\nSpecial thanks to [BrowserStack](https://www.browserstack.com/users/sign_up) for sponsoring this plugin. 👍\n\n[![Browserstack](https://raw.githubusercontent.com/thierryc/react-fullpage/master/static/images/browserstack@2x.png)](https://www.browserstack.com/users/sign_up)\n\n## License (MIT)\n\n```\nWWWWWW||WWWWWW\n W W W||W W W\n      ||\n    ( OO )__________\n     /  |           \\\n    /o o|    MIT     \\\n    \\___/||_||__||_|| *\n         || ||  || ||\n        _||_|| _||_||\n       (__|__|(__|__|\n```\n\nMIT © [thierryc](https://github.com/thierryc)\nCopyright (c) 2018-present anotherplanet.io, hello@anotherplanet.io\n\n## Hit me up on Twitter\n\n[@Autre_planete](https://twitter.com/Autre_planete?ref=github)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthierryc%2Freact-fullpage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthierryc%2Freact-fullpage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthierryc%2Freact-fullpage/lists"}