πŸš€Β Β Astro β€” Lightbox β€’ Zoom image to fullscreen


Simple lightbox component.

Keywords:

  • astro
  • astro-component
  • media
  • zoom
  • lightbox
  • image
  • fullscreen
  • native
  • interactive
  • vanilla
  • javascript

πŸš€Β Β Astro β€” Lightbox β€’ Zoom image to fullscreen

Simple lightbox component.

πŸ“¦Β Β Installation

pnpm i @julian_cataldo/astro-lightbox

Warning
🚧  Work in progress

πŸ› Β Β Usage

---
import Lightbox from '@julian_cataldo/astro-lightbox/Lightbox.astro';
// ...
---
<!-- ... -->
<head>
  <!-- ... -->
  <Lightbox />
</head>
<body>
  <!-- ... -->

  <div class='some-wrapper' data-lightbox='true'>
    <Image />
  </div>

  <!-- ... -->
</body>

Changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

0.10.5 (2022-07-24)

Note: Version bump only for package @julian_cataldo/astro-lightbox

0.10.4 (2022-07-18)

Note: Version bump only for package @julian_cataldo/astro-lightbox

0.10.3 (2022-06-26)

Note: Version bump only for package @julian_cataldo/astro-lightbox

0.10.2 (2022-06-25)

Note: Version bump only for package @julian_cataldo/astro-lightbox

0.10.1 (2022-06-22)

Note: Version bump only for package @julian_cataldo/astro-lightbox

0.10.0 (2022-06-21)

Features

  • init lightbox component (84f64d8)
...