diff --git a/README.md b/README.md
index b624b9e..d21c8ca 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,96 @@ import("/js/modules/gallery.mjs").then((module) => {
```
CSS in the `/index.css` file
+## Example with initial images
+```html
+
+```
+```js
+import("/js/modules/gallery.mjs").then((module) => {
+ // Initializing the instance
+ const instance = new module.gallery(
+ document.getElementById("wrap"),
+ document.getElementById("images"),
+ document.getElementById("gallery"),
+ true,
+ );
+
+ // Initializing saved images
+ const images = instance.gallery.getAttribute("data-initial-images")?.split(";");
+
+ // Importing saved images
+ instance.import(images?.entries() ?? []);
+});
+```
+CSS in the `/index.css` file
+
+## Example with handling movemens and deletings
+```html
+
+```
+```js
+import("/js/modules/gallery.mjs").then((module) => {
+ // Initializing the instance
+ const instance = new module.gallery(
+ document.getElementById("product_images_wrap"),
+ document.getElementById("product_images_input"),
+ document.getElementById("product_images_gallery"),
+ true,
+ );
+
+ // Initializing the delete button event
+ instance.events.get("wrap").set("delete", (event) => {
+ // Searching for the closest parent wrap
+ const wrap = event.target.closest("div.image")?.getAttribute("id");
+
+ // Deleting the image from the account buffer
+ core.account.buffer.delete("import_create_images_" + wrap);
+ });
+
+ // Reinitializing the drop event
+ instance.events.get("moving").set("drop", (event) => {
+ // Searching for the closest parent wrap identifier
+ const wrap = event.target.closest("div.image")?.getAttribute("id");
+
+ // Writing into the account buffer (swapping images)
+ instance.export(wrap).then((src) =>
+ core.account.buffer.write("import_create_images_" + instance.dragged,src.replace("/storage", ""), true));
+ instance.export(instance.dragged).then((src) =>
+ core.account.buffer.write("import_create_images_" + wrap, src.replace("/storage", ""), true));
+ });
+
+ // Initializing saved images
+ const images = instance.gallery.getAttribute("data-initial-images")?.split(";");
+
+ // Importing saved images
+ instance.import(images?.entries() ?? []);
+});
+```
+CSS in the `/index.css` file
+
+
## Demonstration
### [CodePen](https://codepen.io/mirzaev-sexy/pen/RNPdYvv)