├── .gitignore ├── LICENSE ├── README.md ├── dist ├── blendy.d.ts ├── blendy.js └── blendy.min.js ├── examples ├── react │ ├── App.tsx │ ├── close.svg │ ├── index.html │ ├── main.tsx │ └── style.css ├── svelte │ ├── App.svelte │ ├── Modal.svelte │ ├── close.svg │ ├── index.html │ ├── main.ts │ └── style.css ├── vanilla │ ├── close.svg │ ├── index.html │ ├── main.ts │ └── style.css └── vue │ ├── App.vue │ ├── Modal.vue │ ├── close.svg │ ├── index.html │ ├── main.ts │ └── style.css ├── package.json ├── pnpm-lock.yaml ├── src ├── animators.ts ├── borderRadius.ts ├── easings.ts ├── index.ts ├── math.ts ├── rect.ts ├── vector.ts ├── view.ts └── vite-env.d.ts ├── tsconfig.build.json ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/README.md -------------------------------------------------------------------------------- /dist/blendy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/dist/blendy.d.ts -------------------------------------------------------------------------------- /dist/blendy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/dist/blendy.js -------------------------------------------------------------------------------- /dist/blendy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/dist/blendy.min.js -------------------------------------------------------------------------------- /examples/react/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/react/App.tsx -------------------------------------------------------------------------------- /examples/react/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/react/close.svg -------------------------------------------------------------------------------- /examples/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/react/index.html -------------------------------------------------------------------------------- /examples/react/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/react/main.tsx -------------------------------------------------------------------------------- /examples/react/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/react/style.css -------------------------------------------------------------------------------- /examples/svelte/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/App.svelte -------------------------------------------------------------------------------- /examples/svelte/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/Modal.svelte -------------------------------------------------------------------------------- /examples/svelte/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/close.svg -------------------------------------------------------------------------------- /examples/svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/index.html -------------------------------------------------------------------------------- /examples/svelte/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/main.ts -------------------------------------------------------------------------------- /examples/svelte/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/svelte/style.css -------------------------------------------------------------------------------- /examples/vanilla/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vanilla/close.svg -------------------------------------------------------------------------------- /examples/vanilla/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vanilla/index.html -------------------------------------------------------------------------------- /examples/vanilla/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vanilla/main.ts -------------------------------------------------------------------------------- /examples/vanilla/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vanilla/style.css -------------------------------------------------------------------------------- /examples/vue/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/App.vue -------------------------------------------------------------------------------- /examples/vue/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/Modal.vue -------------------------------------------------------------------------------- /examples/vue/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/close.svg -------------------------------------------------------------------------------- /examples/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/index.html -------------------------------------------------------------------------------- /examples/vue/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/main.ts -------------------------------------------------------------------------------- /examples/vue/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/examples/vue/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/animators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/animators.ts -------------------------------------------------------------------------------- /src/borderRadius.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/borderRadius.ts -------------------------------------------------------------------------------- /src/easings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/easings.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/math.ts -------------------------------------------------------------------------------- /src/rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/rect.ts -------------------------------------------------------------------------------- /src/vector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/vector.ts -------------------------------------------------------------------------------- /src/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/src/view.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TahaSh/blendy/HEAD/vite.config.ts --------------------------------------------------------------------------------