Update README.md
Browse files
README.md
CHANGED
|
@@ -23,4 +23,73 @@ library_name: diffusers
|
|
| 23 |
- jewellery
|
| 24 |
- earrings
|
| 25 |
|
| 26 |
-
Previews(Pony):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
- jewellery
|
| 24 |
- earrings
|
| 25 |
|
| 26 |
+
Previews(Pony):
|
| 27 |
+
<style>
|
| 28 |
+
.custom-table td {
|
| 29 |
+
width: 25%; /* 100% / 4 = 25% per cell for 4 items per row */
|
| 30 |
+
}
|
| 31 |
+
.custom-image-container {
|
| 32 |
+
position: relative;
|
| 33 |
+
width: 100%;
|
| 34 |
+
height: 100%;
|
| 35 |
+
border-radius: 0.5em;
|
| 36 |
+
overflow: hidden;
|
| 37 |
+
align-items: center;
|
| 38 |
+
}
|
| 39 |
+
.custom-image {
|
| 40 |
+
width: 100%;
|
| 41 |
+
height: auto;
|
| 42 |
+
border-radius: 0.5em;
|
| 43 |
+
transition: transform 0.25s;
|
| 44 |
+
}
|
| 45 |
+
.custom-image-container:hover .custom-image {
|
| 46 |
+
transform: scale(1.2);
|
| 47 |
+
}
|
| 48 |
+
</style>
|
| 49 |
+
|
| 50 |
+
<table class="custom-table">
|
| 51 |
+
<tr>
|
| 52 |
+
<td>
|
| 53 |
+
<div class="custom-image-container">
|
| 54 |
+
<img class="custom-image" src="PonyPreview/P1.png" alt="Pony Preview">
|
| 55 |
+
</div>
|
| 56 |
+
</td>
|
| 57 |
+
<td>
|
| 58 |
+
<div class="custom-image-container">
|
| 59 |
+
<img class="custom-image" src="PonyPreview/P2.png" alt="Pony Preview">
|
| 60 |
+
</div>
|
| 61 |
+
</td>
|
| 62 |
+
<td>
|
| 63 |
+
<div class="custom-image-container">
|
| 64 |
+
<img class="custom-image" src="PonyPreview/P3.png" alt="Pony Preview">
|
| 65 |
+
</div>
|
| 66 |
+
</td>
|
| 67 |
+
<td>
|
| 68 |
+
<div class="custom-image-container">
|
| 69 |
+
<img class="custom-image" src="PonyPreview/P4.png" alt="Pony Preview">
|
| 70 |
+
</div>
|
| 71 |
+
</td>
|
| 72 |
+
</tr>
|
| 73 |
+
<tr>
|
| 74 |
+
<td>
|
| 75 |
+
<div class="custom-image-container">
|
| 76 |
+
<img class="custom-image" src="PonyPreview/P5.png" alt="Pony Preview">
|
| 77 |
+
</div>
|
| 78 |
+
</td>
|
| 79 |
+
<td>
|
| 80 |
+
<div class="custom-image-container">
|
| 81 |
+
<img class="custom-image" src="PonyPreview/P6.png" alt="Pony Preview">
|
| 82 |
+
</div>
|
| 83 |
+
</td>
|
| 84 |
+
<td>
|
| 85 |
+
<div class="custom-image-container">
|
| 86 |
+
<img class="custom-image" src="PonyPreview/P7.png" alt="Pony Preview">
|
| 87 |
+
</div>
|
| 88 |
+
</td>
|
| 89 |
+
<td>
|
| 90 |
+
<div class="custom-image-container">
|
| 91 |
+
<img class="custom-image" src="PonyPreview/P8.png" alt="Pony Preview">
|
| 92 |
+
</div>
|
| 93 |
+
</td>
|
| 94 |
+
</tr>
|
| 95 |
+
</table>
|