@frybynite/image-cloud 0.10.0 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,9 +10,9 @@ A TypeScript library for creating interactive image clouds with animated scatter
10
10
  ## Features
11
11
 
12
12
  - ✨ Animated image layouts with smooth transitions
13
- - 🎯 Multiple layout algorithms (radial, grid, spiral, cluster, wave, random)
13
+ - 🎯 Multiple layout algorithms (radial, grid, spiral, cluster, wave, honeycomb, random)
14
14
  - 🎬 Rich entry animations (bounce, elastic, wave paths; spin, wobble rotations)
15
- - 🔍 Zoom/focus interactions with keyboard navigation
15
+ - 🔍 Zoom/focus interactions with keyboard, swipe, and mouse wheel navigation
16
16
  - 🎨 State-based image styling (borders, shadows, filters for default/hover/focused)
17
17
  - 📱 Responsive design with adaptive sizing
18
18
  - 🖼️ Multiple image sources (static URLs, JSON endpoints, Google Drive, composite loaders)
@@ -106,13 +106,13 @@ const cloud = await imageCloud({
106
106
 
107
107
  ## Getting Started
108
108
 
109
- For detailed configuration, see the documentation in the `docs/` folder:
109
+ Full documentation is available at **[frybynite.github.io/image-cloud](https://frybynite.github.io/image-cloud/)**
110
110
 
111
- 1. **[Loaders](docs/LOADERS.md)** — Configure image sources (static URLs, JSON endpoints, local paths, Google Drive folders)
112
- 2. **[Layouts](docs/LAYOUTS.md)** — Choose and customize layout algorithms (radial, grid, spiral, cluster, random, wave)
113
- 3. **[Image Sizing](docs/IMAGE_SIZING.md)** — Control base sizes, variance, and responsive/adaptive behavior
114
- 4. **[Full Parameter Reference](docs/PARAMETERS.md)** — Complete configuration options for animation, interaction, styling, and more
115
- 5. **[API Reference](docs/api/README.md)** — TypeScript API documentation for the ImageCloud class, types, loaders, and layouts
111
+ - **[Loaders](https://frybynite.github.io/image-cloud/loaders/)** — Configure image sources (static URLs, JSON endpoints, Google Drive)
112
+ - **[Layouts](https://frybynite.github.io/image-cloud/layouts/)** — Layout algorithms (radial, grid, spiral, cluster, wave, honeycomb, random)
113
+ - **[Image Sizing](https://frybynite.github.io/image-cloud/image_sizing/)** — Base sizes, variance, and responsive/adaptive behavior
114
+ - **[Parameters](https://frybynite.github.io/image-cloud/parameters/)** — Complete configuration reference
115
+ - **[API Reference](https://frybynite.github.io/image-cloud/api/)** — TypeScript API documentation
116
116
 
117
117
  ### Using the Configurator
118
118
 
@@ -138,6 +138,10 @@ The Configurator lets you visually adjust all settings and exports a ready-to-us
138
138
  - **Enter / Space**: Focus hovered image
139
139
  - **Escape**: Unfocus current image
140
140
 
141
+ ### Touch
142
+
143
+ - **Swipe left / right**: Navigate between focused images
144
+
141
145
  ### Window
142
146
 
143
147
  - **Resize**: Responsive layout adjustment (debounced)
@@ -151,29 +155,31 @@ The Configurator lets you visually adjust all settings and exports a ready-to-us
151
155
 
152
156
  ## Examples
153
157
 
154
- Check out the `examples/` directory for various usage patterns:
155
- - `esm-example.html` - Modern ES module usage
156
- - `cdn-umd-example.html` - Traditional script tag / CDN usage
157
- - `auto-init-example.html` - HTML data attribute initialization
158
- - `static-loader-example.html` - Static image URLs
159
- - `static-urls-shorthand-example.html` - Simplest static loader: direct URL array shorthand
160
- - `static-json-source-example.html` - Load images from a JSON endpoint
161
- - `google-drive-loader-example.html` - Google Drive folder source
162
- - `layout-algorithms.html` - Compare all layout algorithms
163
- - `entry-animations.html` - Entry animation styles
164
- - `image-style-demo.html` - Borders, shadows, and filters
165
- - `typescript-example.ts` - TypeScript with React and Vue
166
- - See `examples/README.md` for detailed instructions
158
+ Live examples are published at [frybynite.github.io/image-cloud/examples/](https://frybynite.github.io/image-cloud/examples/):
159
+
160
+ - [Static URLs Shorthand](https://frybynite.github.io/image-cloud/examples/static-urls-shorthand-example.html) - Simplest setup: direct URL array
161
+ - [Static Loader](https://frybynite.github.io/image-cloud/examples/static-loader-example.html) - Static image URLs
162
+ - [Static JSON Source](https://frybynite.github.io/image-cloud/examples/static-json-source-example.html) - Load images from a JSON endpoint
163
+ - [Google Drive](https://frybynite.github.io/image-cloud/examples/google-drive-loader-example.html) - Google Drive folder source
164
+ - [Auto-Init](https://frybynite.github.io/image-cloud/examples/auto-init-example.html) - Zero-JS setup using data attributes
165
+ - [ESM Module](https://frybynite.github.io/image-cloud/examples/esm-example.html) - ES module usage
166
+ - [CDN/UMD](https://frybynite.github.io/image-cloud/examples/cdn-umd-example.html) - CDN script tag usage
167
+ - [Iframe Embed](https://frybynite.github.io/image-cloud/examples/iframe-example.html) - Embedded in an iframe
168
+ - [Layout Algorithms](https://frybynite.github.io/image-cloud/examples/layout-algorithms.html) - Compare all layout algorithms
169
+ - [Entry Animations](https://frybynite.github.io/image-cloud/examples/entry-animations.html) - Entry animation styles
170
+ - [Keyboard Navigation](https://frybynite.github.io/image-cloud/examples/keyboard-navigation-demo.html) - Per-container keyboard navigation
171
+ - [Image Style Demo](https://frybynite.github.io/image-cloud/examples/image-style-demo.html) - Borders, shadows, and filters
172
+ - [Detailed Styling](https://frybynite.github.io/image-cloud/examples/styling/index.html) - In-depth styling examples
167
173
 
168
174
  ## Changelog
169
175
 
170
- See [CHANGELOG.md](CHANGELOG.md) for a full list of changes across all versions.
176
+ See [Changelog](https://frybynite.github.io/image-cloud/changelog/) for a full list of changes across all versions.
171
177
 
172
178
  ## Contributing
173
179
 
174
180
  Contributions are welcome! Please feel free to submit a Pull Request.
175
181
 
176
- See [docs/DEVELOPER.md](docs/DEVELOPER.md) for build scripts, testing, and project structure.
182
+ See the [Developer Guide](https://frybynite.github.io/image-cloud/developer/) for build scripts, testing, and project structure.
177
183
 
178
184
  ## License
179
185