An open API service indexing awesome lists of open source software.

https://github.com/dimfeld/svelte-zoomable

Zoomable UI in Svelte
https://github.com/dimfeld/svelte-zoomable

Last synced: over 1 year ago
JSON representation

Zoomable UI in Svelte

Awesome Lists containing this project

README

          

# Svelte Zoomable UI

This is a component for providing UI that can zoom into different levels of detail.

More docs coming soon, but you can see some Svelte REPL examples to get a good idea of how it works:

- [Zoomable Grid](https://svelte.dev/repl/32bf500c4b8b4b718daee1fae74b6a51?version=3.32.0)
- [Flex Layouts](https://svelte.dev/repl/58dfe87756ee4db897c281b52fdef7b7?version=3.31.0)

```svelte

let zoomManager;

{#each data as item}


Content when the item is zoomed out



Content when the item is zoomed in. This can contain additional Zoomables for more levels of nesting.


{/each}

```