abdelfattahradwan / svelte-image-viewer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

svelte-image-viewer

A couple of simple components for displaying content with pan and zoom capabilities.

Installation

npm

npm install svelte-image-viewer

pnpm

pnpm add svelte-image-viewer

bun

bun add svelte-image-viewer

Getting Started

ImageViewer component

The ImageViewer component is a simple image viewer that displays an image with pan and zoom capabilities.

<script>
  import { ImageViewer } from 'svelte-image-viewer';
</script>

<div
  style="position: relative; height: 512px; user-select: none;border: 1px solid white;"
>
  <ImageViewer src="https://source.unsplash.com/random/768x512" />
</div>

Viewer component

The Viewer component displays its children inside a container with pan and zoom capabilities.

<script>
  import { Viewer } from 'svelte-image-viewer';
</script>

<div
  style="position: relative; height: 512px; user-select: none; border: 1px solid white;"
>
  <Viewer>
    <p>This is a paragraph inside the viewer</p>
  </Viewer>
</div>

Support

If you find this project useful, consider supporting it by buying me a coffee:

ko-fi

Your support is appreciated. Thank you!

About

License:MIT License


Languages

Language:TypeScript 47.8%Language:Svelte 44.1%Language:HTML 3.2%Language:JavaScript 2.6%Language:CSS 2.3%