├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── index.js │ ├── motionSwiper.js │ ├── motionSwiper.scss │ └── utils.js └── routes │ ├── +layout.js │ └── +page.svelte ├── static ├── favicon.png └── images │ ├── david-becker-cl8lM1W2nHM-unsplash.jpg │ ├── igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg │ ├── josh-withers-EG8_QJ0OgOU-unsplash.jpg │ ├── josh-withers-TCBvy1-xHU8-unsplash.jpg │ ├── neom-I7NOiVT6jq0-unsplash.jpg │ └── neom-i60yUhfWeYI-unsplash.jpg ├── svelte.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/motionSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/lib/motionSwiper.js -------------------------------------------------------------------------------- /src/lib/motionSwiper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/lib/motionSwiper.scss -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/routes/+layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/routes/+layout.js -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/images/david-becker-cl8lM1W2nHM-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/david-becker-cl8lM1W2nHM-unsplash.jpg -------------------------------------------------------------------------------- /static/images/igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg -------------------------------------------------------------------------------- /static/images/josh-withers-EG8_QJ0OgOU-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/josh-withers-EG8_QJ0OgOU-unsplash.jpg -------------------------------------------------------------------------------- /static/images/josh-withers-TCBvy1-xHU8-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/josh-withers-TCBvy1-xHU8-unsplash.jpg -------------------------------------------------------------------------------- /static/images/neom-I7NOiVT6jq0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/neom-I7NOiVT6jq0-unsplash.jpg -------------------------------------------------------------------------------- /static/images/neom-i60yUhfWeYI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/static/images/neom-i60yUhfWeYI-unsplash.jpg -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/HEAD/vite.config.js --------------------------------------------------------------------------------