jackcipher35 downloadsClick to zoom images and mermaid diagrams with lightbox effect.
A Lightbox plugin for Obsidian that allows you to click and zoom images and Mermaid diagrams.
<vault>/.obsidian/plugins/obsidian-lightbox/# Clone the repository
cd <vault>/.obsidian/plugins/
git clone https://github.com/your-repo/obsidian-lightbox.git
cd obsidian-lightbox
# Install dependencies
npm install
# Build
npm run build
To install the plugin, you only need these 3 files in the plugin folder:
manifest.json - Plugin metadata (required)main.js - Compiled plugin code (required)styles.css - Stylesheet (required)| Action | Description |
|---|---|
| Click image/Mermaid | Open Lightbox |
| Scroll up | Zoom in |
| Scroll down | Zoom out |
| Mouse drag | Pan the image |
| Click background | Close Lightbox |
| ESC key | Close Lightbox |
| ➕ button | Zoom in 25% |
| ➖ button | Zoom out 25% |
| 🔄 button | Reset zoom and position |
| ✖️ button | Close |
# Development mode (auto-rebuild on changes)
npm run dev
# Production build
npm run build
MIT