@frybynite/image-cloud 0.2.3 → 0.2.5
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 +18 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# Image Cloud Library
|
|
2
4
|
|
|
3
5
|
A TypeScript library for creating interactive image clouds with animated scattered layouts and zoom effects. Supports multiple image sources (Google Drive, static URLs) and layout algorithms.
|
|
@@ -160,28 +162,30 @@ The Configurator lets you visually adjust all settings and exports a ready-to-us
|
|
|
160
162
|
- Safari: Latest 2 versions
|
|
161
163
|
- Mobile: iOS Safari 12+, Chrome Android
|
|
162
164
|
|
|
163
|
-
## License
|
|
164
|
-
|
|
165
|
-
MIT
|
|
166
|
-
|
|
167
|
-
## Author
|
|
168
|
-
|
|
169
|
-
[frybynite](https://github.com/frybynite)
|
|
170
|
-
|
|
171
165
|
## Examples
|
|
172
166
|
|
|
173
167
|
Check out the `examples/` directory for various usage patterns:
|
|
174
168
|
- `esm-example.html` - Modern ES module usage
|
|
175
169
|
- `cdn-umd-example.html` - Traditional script tag / CDN usage
|
|
176
|
-
- `
|
|
170
|
+
- `auto-init-example.html` - HTML data attribute initialization
|
|
171
|
+
- `static-loader-example.html` - Static image URLs
|
|
172
|
+
- `google-drive-loader-example.html` - Google Drive folder source
|
|
173
|
+
- `layout-algorithms.html` - Compare all layout algorithms
|
|
174
|
+
- `entry-animations.html` - Entry animation styles
|
|
175
|
+
- `image-style-demo.html` - Borders, shadows, and filters
|
|
176
|
+
- `typescript-example.ts` - TypeScript with React and Vue
|
|
177
177
|
- See `examples/README.md` for detailed instructions
|
|
178
178
|
|
|
179
|
-
Also see:
|
|
180
|
-
- `index.html` - Production Google Drive cloud
|
|
181
|
-
- `index-static.html` - Static image sources example
|
|
182
|
-
|
|
183
179
|
## Contributing
|
|
184
180
|
|
|
185
181
|
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
186
182
|
|
|
187
|
-
See [docs/DEVELOPER.md](docs/DEVELOPER.md) for build scripts, testing, and project structure.
|
|
183
|
+
See [docs/DEVELOPER.md](docs/DEVELOPER.md) for build scripts, testing, and project structure.
|
|
184
|
+
|
|
185
|
+
## License
|
|
186
|
+
|
|
187
|
+
MIT
|
|
188
|
+
|
|
189
|
+
## Author
|
|
190
|
+
|
|
191
|
+
[frybynite](https://github.com/frybynite)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frybynite/image-cloud",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Javascript/TypeScript image cloud library with custom loaders, various layouts, full images styling, with animation and zoom effects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/image-cloud.umd.js",
|