-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-improved.html
More file actions
235 lines (196 loc) · 8.61 KB
/
example-improved.html
File metadata and controls
235 lines (196 loc) · 8.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Confronto Personaggi - Before/After</title>
<style>
body {
margin: 0;
padding: 40px;
background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
font-family: 'Courier New', monospace;
color: #00F2FF;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
font-size: 32px;
margin-bottom: 10px;
text-shadow: 0 0 20px #00F2FF;
}
.subtitle {
font-size: 14px;
color: #888;
margin-bottom: 40px;
}
.comparison {
display: flex;
gap: 60px;
align-items: flex-start;
}
.character-box {
background: rgba(255, 255, 255, 0.05);
border: 2px solid #00F2FF;
border-radius: 12px;
padding: 30px;
text-align: center;
box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}
.label {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-transform: uppercase;
}
.before .label {
color: #FF4444;
}
.after .label {
color: #00FF88;
}
svg {
width: 320px;
height: 320px;
image-rendering: pixelated;
image-rendering: crisp-edges;
border: 1px solid rgba(255, 255, 255, 0.2);
background: #f0f0f0;
}
.notes {
margin-top: 20px;
font-size: 12px;
color: #aaa;
max-width: 250px;
text-align: left;
line-height: 1.6;
}
.notes li {
margin-bottom: 8px;
}
.improvement {
color: #00FF88;
font-weight: bold;
}
</style>
</head>
<body>
<h1>🎨 CONFRONTO PERSONAGGI CYBERPUNK</h1>
<p class="subtitle">Analisi Before/After - Miglioramenti Proposti</p>
<div class="comparison">
<!-- BEFORE -->
<div class="character-box before">
<div class="label">❌ Before</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<!-- Background -->
<rect width="32" height="32" fill="#E5E7EB" />
<!-- Body (simple) -->
<rect x="13" y="22" width="6" height="10" fill="#1E293B" />
<rect x="12" y="24" width="8" height="8" fill="#1E293B" />
<!-- Neck -->
<rect x="14" y="18" width="4" height="4" fill="#E0AC69" />
<!-- Head (small, 12px tall) -->
<rect x="11" y="8" width="10" height="10" fill="#E0AC69" />
<rect x="10" y="9" width="12" height="8" fill="#E0AC69" />
<!-- Eyes (tiny, 1px) -->
<rect x="13" y="11" width="1" height="1" fill="#000" />
<rect x="18" y="11" width="1" height="1" fill="#000" />
<!-- Hair -->
<rect x="10" y="6" width="12" height="3" fill="#2B1B10" />
<!-- Simple visor -->
<rect x="12" y="11" width="8" height="1" fill="#00F2FF" />
</svg>
<div class="notes">
<strong>Problemi:</strong>
<ul>
<li>Testa troppo piccola</li>
<li>Occhi 1px invisibili</li>
<li>Corpo semplice</li>
<li>Pochi dettagli</li>
<li>Forme poco definite</li>
</ul>
</div>
</div>
<!-- AFTER -->
<div class="character-box after">
<div class="label">✅ After</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<!-- Background -->
<rect width="32" height="32" fill="#E5E7EB" />
<!-- Body - Defined shape -->
<!-- Torso base -->
<rect x="12" y="25" width="8" height="7" fill="#1E293B" />
<rect x="11" y="26" width="10" height="6" fill="#1E293B" />
<rect x="10" y="27" width="12" height="5" fill="#1E293B" />
<!-- Shoulders -->
<rect x="9" y="23" width="4" height="3" fill="#0F172A" />
<rect x="19" y="23" width="4" height="3" fill="#0F172A" />
<rect x="10" y="24" width="3" height="2" fill="#0F172A" />
<rect x="19" y="24" width="3" height="2" fill="#0F172A" />
<!-- Chest armor details -->
<rect x="14" y="26" width="4" height="4" fill="#312E81" />
<!-- Neon accents (symmetric) -->
<rect x="13" y="25" width="1" height="5" fill="#00F2FF" />
<rect x="18" y="25" width="1" height="5" fill="#00F2FF" />
<rect x="10" y="23" width="1" height="1" fill="#00F2FF" />
<rect x="21" y="23" width="1" height="1" fill="#00F2FF" />
<!-- Arc reactor -->
<rect x="15" y="27" width="2" height="2" fill="#00F2FF" />
<rect x="15" y="28" width="2" height="1" fill="#0EA5E9" />
<!-- Neck (larger, connected to shoulders) -->
<rect x="14" y="20" width="4" height="3" fill="#E0AC69" />
<rect x="15" y="19" width="2" height="1" fill="#E0AC69" />
<!-- Neck transition to shoulders (trapezius muscle area) -->
<rect x="13" y="22" width="6" height="1" fill="#E0AC69" />
<rect x="12" y="23" width="8" height="1" fill="#C68642" />
<!-- Cyber port on neck -->
<rect x="17" y="21" width="1" height="2" fill="#FF00FF" />
<!-- Head (larger, 16px tall, better proportions) -->
<!-- Head outline/shape -->
<rect x="12" y="6" width="8" height="13" fill="#E0AC69" />
<rect x="11" y="8" width="10" height="10" fill="#E0AC69" />
<rect x="13" y="5" width="6" height="2" fill="#E0AC69" />
<!-- Head shading (depth) -->
<rect x="11" y="8" width="1" height="8" fill="#C68642" />
<rect x="20" y="8" width="1" height="8" fill="#C68642" />
<!-- Visor (larger, 3px tall) -->
<rect x="12" y="10" width="8" height="3" fill="#000" />
<rect x="11" y="11" width="10" height="2" fill="#000" />
<!-- Glowing eyes (2x2 pixels) -->
<rect x="13" y="11" width="2" height="2" fill="#00F2FF" />
<rect x="17" y="11" width="2" height="2" fill="#00F2FF" />
<!-- Visor glow accents -->
<rect x="11" y="11" width="1" height="2" fill="#0EA5E9" />
<rect x="20" y="11" width="1" height="2" fill="#0EA5E9" />
<!-- Mouth -->
<rect x="15" y="16" width="2" height="1" fill="#C68642" />
<!-- Hair (better defined) -->
<rect x="11" y="4" width="10" height="3" fill="#2B1B10" />
<rect x="12" y="3" width="8" height="1" fill="#2B1B10" />
<rect x="10" y="5" width="12" height="2" fill="#2B1B10" />
<!-- Neon hair streak -->
<rect x="16" y="3" width="1" height="3" fill="#00FF88" />
</svg>
<div class="notes">
<strong class="improvement">Miglioramenti:</strong>
<ul>
<li class="improvement">✓ Testa 33% più grande</li>
<li class="improvement">✓ Occhi 2x2px visibili</li>
<li class="improvement">✓ Spalle definite</li>
<li class="improvement">✓ Simmetria perfetta</li>
<li class="improvement">✓ Dettagli tech grandi</li>
<li class="improvement">✓ Shading per profondità</li>
</ul>
</div>
</div>
</div>
<div style="margin-top: 40px; text-align: center; max-width: 800px; color: #aaa; font-size: 14px;">
<p><strong style="color: #00F2FF;">Differenze Chiave:</strong></p>
<p>Il personaggio migliorato ha proporzioni più realistiche (testa 1/3 dell'altezza totale),
simmetria perfetta per elementi come occhi e spalle, forme geometriche più definite con outline,
e dettagli tech abbastanza grandi da essere visibili (minimo 2x2 pixel).</p>
</div>
</body>
</html>