dataautogpt3 commited on
Commit
aeddf70
·
verified ·
1 Parent(s): 4aead73

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -16
README.md CHANGED
@@ -18,24 +18,71 @@ tags:
18
 
19
  ## Example Outputs
20
 
21
- <div style="display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;">
22
- <a href="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example.png" target="_blank">
23
- <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example.png" width="256" alt="Example Output 1" style="cursor: pointer;"/>
24
- </a>
25
- <a href="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example2.png" target="_blank">
26
- <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example2.png" width="256" alt="Example Output 2" style="cursor: pointer;"/>
27
- </a>
28
- <a href="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example3.png" target="_blank">
29
- <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example3.png" width="256" alt="Example Output 3" style="cursor: pointer;"/>
30
- </a>
31
- <a href="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example4.png" target="_blank">
32
- <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example4.png" width="256" alt="Example Output 4" style="cursor: pointer;"/>
33
- </a>
34
- <a href="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example5.png" target="_blank">
35
- <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example5.png" width="512" alt="Example Output 5" style="cursor: pointer;"/>
36
- </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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`