├── .github └── workflows │ ├── main.yml │ └── size.yml ├── .gitignore ├── LICENSE ├── README.md ├── img └── ns.png ├── package.json ├── src ├── FixedElement.tsx ├── GellyElement.tsx ├── HorizontalSection.tsx ├── ParallaxImage.tsx ├── ScrollContainer.tsx ├── SequenceSection.tsx ├── allowScrollPlugin.ts ├── animations.ts ├── index.tsx ├── isTouch.ts ├── state.ts ├── styles.scss ├── utils.ts └── willChangePlugin.ts ├── tsconfig.json ├── tsdx.config.js └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/.github/workflows/size.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | .cache 5 | dist 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/README.md -------------------------------------------------------------------------------- /img/ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/img/ns.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/package.json -------------------------------------------------------------------------------- /src/FixedElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/FixedElement.tsx -------------------------------------------------------------------------------- /src/GellyElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/GellyElement.tsx -------------------------------------------------------------------------------- /src/HorizontalSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/HorizontalSection.tsx -------------------------------------------------------------------------------- /src/ParallaxImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/ParallaxImage.tsx -------------------------------------------------------------------------------- /src/ScrollContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/ScrollContainer.tsx -------------------------------------------------------------------------------- /src/SequenceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/SequenceSection.tsx -------------------------------------------------------------------------------- /src/allowScrollPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/allowScrollPlugin.ts -------------------------------------------------------------------------------- /src/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/animations.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/isTouch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/isTouch.ts -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/state.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/willChangePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/src/willChangePlugin.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdx.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/tsdx.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehsan-shv/react-nice-scroll/HEAD/yarn.lock --------------------------------------------------------------------------------