@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 +29 -23
- package/dist/image-cloud-auto-init.js +460 -497
- package/dist/image-cloud-auto-init.js.map +1 -1
- package/dist/image-cloud.js +283 -320
- package/dist/image-cloud.js.map +1 -1
- package/dist/image-cloud.umd.js +3 -3
- package/dist/image-cloud.umd.js.map +1 -1
- package/dist/index.d.ts +24 -35
- package/dist/react.d.ts +24 -35
- package/dist/react.js +244 -280
- package/dist/react.js.map +1 -1
- package/dist/vue.d.ts +24 -35
- package/dist/vue.js +227 -263
- package/dist/vue.js.map +1 -1
- package/dist/web-component.d.ts +24 -35
- package/dist/web-component.js +189 -225
- package/dist/web-component.js.map +1 -1
- package/package.json +9 -6
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
|
-
|
|
109
|
+
Full documentation is available at **[frybynite.github.io/image-cloud](https://frybynite.github.io/image-cloud/)**
|
|
110
110
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
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
|
-
|
|
155
|
-
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
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 [
|
|
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 [
|
|
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
|
|