dataautogpt3
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -18,24 +18,71 @@ tags:
|
|
18 |
|
19 |
## Example Outputs
|
20 |
|
21 |
-
<
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
</div>
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
Example prompt: `A digital illustration of a lich with long grey hair and beard, as a university professor wearing a formal suit and standing in front of a class, writing on a whiteboard. He holds a marker, writing complex equations or magical symbols on the whiteboard.`
|
40 |
|
41 |
Example prompt 2: `a Candid Photo of a real short grey alien peering around a corner while trying to hide from the viewer in a living room,real photography, fujifilm superia, full HD, taken on a Canon EOS R5 F1. 2 ISO100 35MM`
|
|
|
18 |
|
19 |
## Example Outputs
|
20 |
|
21 |
+
<style>
|
22 |
+
.gallery {
|
23 |
+
display: flex;
|
24 |
+
flex-wrap: wrap;
|
25 |
+
gap: 10px;
|
26 |
+
justify-content: center;
|
27 |
+
}
|
28 |
+
|
29 |
+
.gallery img {
|
30 |
+
width: 256px;
|
31 |
+
cursor: pointer;
|
32 |
+
transition: transform 0.2s;
|
33 |
+
}
|
34 |
+
|
35 |
+
.gallery img:hover {
|
36 |
+
transform: scale(1.05);
|
37 |
+
}
|
38 |
+
|
39 |
+
.modal {
|
40 |
+
display: none;
|
41 |
+
position: fixed;
|
42 |
+
z-index: 1000;
|
43 |
+
top: 0;
|
44 |
+
left: 0;
|
45 |
+
width: 100%;
|
46 |
+
height: 100%;
|
47 |
+
background-color: rgba(0,0,0,0.9);
|
48 |
+
padding: 20px;
|
49 |
+
box-sizing: border-box;
|
50 |
+
}
|
51 |
+
|
52 |
+
.modal img {
|
53 |
+
max-width: 90%;
|
54 |
+
max-height: 90vh;
|
55 |
+
margin: auto;
|
56 |
+
display: block;
|
57 |
+
position: relative;
|
58 |
+
top: 50%;
|
59 |
+
transform: translateY(-50%);
|
60 |
+
}
|
61 |
+
|
62 |
+
.modal.active {
|
63 |
+
display: block;
|
64 |
+
}
|
65 |
+
</style>
|
66 |
+
|
67 |
+
<div class="gallery">
|
68 |
+
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example.png" alt="Example Output 1" onclick="showImage(this.src)"/>
|
69 |
+
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example2.png" alt="Example Output 2" onclick="showImage(this.src)"/>
|
70 |
+
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example3.png" alt="Example Output 3" onclick="showImage(this.src)"/>
|
71 |
+
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example4.png" alt="Example Output 4" onclick="showImage(this.src)"/>
|
72 |
+
<img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example5.png" alt="Example Output 5" onclick="showImage(this.src)"/>
|
73 |
</div>
|
74 |
|
75 |
+
<div class="modal" onclick="this.classList.remove('active')">
|
76 |
+
<img id="modal-img" src="" alt="Full size image"/>
|
77 |
+
</div>
|
78 |
+
|
79 |
+
<script>
|
80 |
+
function showImage(src) {
|
81 |
+
document.getElementById('modal-img').src = src;
|
82 |
+
document.querySelector('.modal').classList.add('active');
|
83 |
+
}
|
84 |
+
</script>
|
85 |
+
|
86 |
Example prompt: `A digital illustration of a lich with long grey hair and beard, as a university professor wearing a formal suit and standing in front of a class, writing on a whiteboard. He holds a marker, writing complex equations or magical symbols on the whiteboard.`
|
87 |
|
88 |
Example prompt 2: `a Candid Photo of a real short grey alien peering around a corner while trying to hide from the viewer in a living room,real photography, fujifilm superia, full HD, taken on a Canon EOS R5 F1. 2 ISO100 35MM`
|