KBlueLeaf commited on
Commit
71e3c81
1 Parent(s): c66d0f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +147 -0
README.md CHANGED
@@ -16,6 +16,153 @@ join us: https://discord.gg/tPBsKDyRR5
16
 
17
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/630593e2fca1d8d92b81d2a1/rUeUdKYiUfi6LtTcpasgN.png)
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ## Highlights
20
  - Resume from Kohaku-XL-Epsilon rev2
21
  - More stable, long/detailed prompt is not a requirement now.
 
16
 
17
  ![image/png](https://cdn-uploads.huggingface.co/production/uploads/630593e2fca1d8d92b81d2a1/rUeUdKYiUfi6LtTcpasgN.png)
18
 
19
+
20
+
21
+ <style>
22
+
23
+ .image-viewer {
24
+ position: relative;
25
+ width: 100%;
26
+ margin: 0 auto;
27
+ display: flex;
28
+ flex-flow: wrap;
29
+ align-items: center;
30
+ justify-content: center;
31
+ }
32
+
33
+ .image-viewer input[type="radio"] {
34
+ display: none;
35
+ }
36
+
37
+ .image-viewer label {
38
+ padding: 18px;
39
+ background-color: #B398F5;
40
+ background-size: cover;
41
+ background-position: center;
42
+ border: 1px solid #ccc;
43
+ cursor: pointer;
44
+ color: black;
45
+ margin: 9px;
46
+ }
47
+
48
+ .image-viewer label:hover {
49
+ background-color: #4C88F5;
50
+ padding: 21px;
51
+ margin: 6px;
52
+ }
53
+
54
+ .image-viewer input[type="radio"]:checked + label {
55
+ background-color: #6296F5;
56
+ padding: 27px;
57
+ margin: 0px;
58
+ }
59
+
60
+ .image-container {
61
+ position: relative;
62
+ width: 100%;
63
+ height: 50vh;
64
+ }
65
+
66
+ .image-container img {
67
+ position: absolute;
68
+ top: 0;
69
+ left: 0;
70
+ height: 100%;
71
+ width: 100%;
72
+ object-fit: contain;
73
+ opacity: 0;
74
+ transition: opacity 0.5s ease;
75
+ }
76
+
77
+ #image1:checked ~ .image-container img:nth-child(1),#image2:checked ~ .image-container img:nth-child(2),#image3:checked ~ .image-container img:nth-child(3),#image4:checked ~ .image-container img:nth-child(4),#image5:checked ~ .image-container img:nth-child(5),#image6:checked ~ .image-container img:nth-child(6),#image7:checked ~ .image-container img:nth-child(7),#image8:checked ~ .image-container img:nth-child(8),#image9:checked ~ .image-container img:nth-child(9) {
78
+ opacity: 1;
79
+ }
80
+
81
+ #image1l{background-image: url(sample-images\02062.jpg);}
82
+ #image2l{background-image: url(sample-images\02081.jpg);}
83
+ #image3l{background-image: url(sample-images\02082.jpg);}
84
+ #image4l{background-image: url(sample-images\02083.jpg);}
85
+ #image5l{background-image: url(sample-images\02084.jpg);}
86
+ #image6l{background-image: url(sample-images\02085.jpg);}
87
+ #image7l{background-image: url(sample-images\02086.jpg);}
88
+ #image8l{background-image: url(sample-images\02088.jpg);}
89
+ #image9l{background-image: url(sample-images\02089.jpg);}
90
+
91
+ </style>
92
+ <div>
93
+
94
+ <div class="image-viewer">
95
+
96
+ <input type="radio" id="image1" name="image-switcher" checked>
97
+ <label for="image1" id="image1l"></label>
98
+
99
+
100
+ <input type="radio" id="image2" name="image-switcher" checked>
101
+ <label for="image2" id="image2l"></label>
102
+
103
+
104
+ <input type="radio" id="image3" name="image-switcher" checked>
105
+ <label for="image3" id="image3l"></label>
106
+
107
+
108
+ <input type="radio" id="image4" name="image-switcher" checked>
109
+ <label for="image4" id="image4l"></label>
110
+
111
+
112
+ <input type="radio" id="image5" name="image-switcher" checked>
113
+ <label for="image5" id="image5l"></label>
114
+
115
+
116
+ <input type="radio" id="image6" name="image-switcher" checked>
117
+ <label for="image6" id="image6l"></label>
118
+
119
+
120
+ <input type="radio" id="image7" name="image-switcher" checked>
121
+ <label for="image7" id="image7l"></label>
122
+
123
+
124
+ <input type="radio" id="image8" name="image-switcher" checked>
125
+ <label for="image8" id="image8l"></label>
126
+
127
+
128
+ <input type="radio" id="image9" name="image-switcher" checked>
129
+ <label for="image9" id="image9l"></label>
130
+
131
+
132
+ <div class="image-container">
133
+
134
+ <img src="sample-images\02062.jpg" alt="image1">
135
+
136
+
137
+ <img src="sample-images\02081.jpg" alt="image2">
138
+
139
+
140
+ <img src="sample-images\02082.jpg" alt="image3">
141
+
142
+
143
+ <img src="sample-images\02083.jpg" alt="image4">
144
+
145
+
146
+ <img src="sample-images\02084.jpg" alt="image5">
147
+
148
+
149
+ <img src="sample-images\02085.jpg" alt="image6">
150
+
151
+
152
+ <img src="sample-images\02086.jpg" alt="image7">
153
+
154
+
155
+ <img src="sample-images\02088.jpg" alt="image8">
156
+
157
+
158
+ <img src="sample-images\02089.jpg" alt="image9">
159
+
160
+ </div>
161
+ </div>
162
+
163
+ </div>
164
+
165
+
166
  ## Highlights
167
  - Resume from Kohaku-XL-Epsilon rev2
168
  - More stable, long/detailed prompt is not a requirement now.