├── .github ├── FUNDING.yml └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── eslint.config.js ├── jsr.json ├── package.json ├── pnpm-lock.yaml ├── src ├── app.d.ts ├── app.html ├── components │ ├── Code │ │ ├── Code.svelte │ │ └── instance.ts │ └── Sections │ │ ├── BestPractices.svelte │ │ ├── ContainerScroll.svelte │ │ ├── Examples.svelte │ │ ├── Header.svelte │ │ ├── Hover.svelte │ │ ├── InView.svelte │ │ ├── Intro.svelte │ │ ├── Press.svelte │ │ ├── Scroll.svelte │ │ ├── ScrollInView.svelte │ │ └── TableOfContents.svelte ├── lib │ ├── actions │ │ ├── hover.ts │ │ ├── inView.ts │ │ ├── press.ts │ │ └── scroll.ts │ └── index.ts ├── routes │ ├── +layout.ts │ └── +page.svelte └── styles.css ├── static ├── .nojekyll └── favicon.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: rootenginear 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/jsr.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/Code/Code.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Code/Code.svelte -------------------------------------------------------------------------------- /src/components/Code/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Code/instance.ts -------------------------------------------------------------------------------- /src/components/Sections/BestPractices.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/BestPractices.svelte -------------------------------------------------------------------------------- /src/components/Sections/ContainerScroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/ContainerScroll.svelte -------------------------------------------------------------------------------- /src/components/Sections/Examples.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Examples.svelte -------------------------------------------------------------------------------- /src/components/Sections/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Header.svelte -------------------------------------------------------------------------------- /src/components/Sections/Hover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Hover.svelte -------------------------------------------------------------------------------- /src/components/Sections/InView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/InView.svelte -------------------------------------------------------------------------------- /src/components/Sections/Intro.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Intro.svelte -------------------------------------------------------------------------------- /src/components/Sections/Press.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Press.svelte -------------------------------------------------------------------------------- /src/components/Sections/Scroll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/Scroll.svelte -------------------------------------------------------------------------------- /src/components/Sections/ScrollInView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/ScrollInView.svelte -------------------------------------------------------------------------------- /src/components/Sections/TableOfContents.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/components/Sections/TableOfContents.svelte -------------------------------------------------------------------------------- /src/lib/actions/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/lib/actions/hover.ts -------------------------------------------------------------------------------- /src/lib/actions/inView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/lib/actions/inView.ts -------------------------------------------------------------------------------- /src/lib/actions/press.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/lib/actions/press.ts -------------------------------------------------------------------------------- /src/lib/actions/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/lib/actions/scroll.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/src/styles.css -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootEnginear/svelte-action-motionone/HEAD/vite.config.ts --------------------------------------------------------------------------------