Skip to content

Commit

Permalink
Minor fix descriptions under layered view
Browse files Browse the repository at this point in the history
  • Loading branch information
minsukkahng committed Sep 4, 2018
1 parent 1818fee commit c9f8699
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions demo/ganlab.html
Original file line number Diff line number Diff line change
Expand Up @@ -426,10 +426,12 @@
font-weight: bold;
text-decoration: underline;
text-decoration-style: dashed;
-webkit-text-decoration-style: dashed;
}

#layers-descriptions .toggle-right.checked {
text-decoration-style: solid;
-webkit-text-decoration-style: solid;
}

#drawing-container {
Expand Down Expand Up @@ -1228,15 +1230,18 @@
Each dot is a 2D data sample:
<span id="toggle-right-real-samples"
class="toggle-right checked"
title="click to toggle this layer"
style="color: var(--real-data-color);">real samples</span>;
<span id="toggle-right-fake-samples"
class="toggle-right checked"
class="toggle-right checked"
title="click to toggle this layer"
style="color: var(--generator-color);">fake samples</span>.
</div>
<div class="layers-descriptions-section">
Background colors of grid cells represent
<span id="toggle-right-discriminator"
class="toggle-right checked"
title="click to toggle this layer"
style="color: rgb(64, 128, 247);">
discriminator</span>'s classifications.
<br />
Expand All @@ -1251,8 +1256,9 @@
<strong>Manifold</strong> represents
<span id="toggle-right-generator"
class="toggle-right"
title="click to toggle this layer"
style="color: var(--generator-color);">
Generator</span>'s transformation results from noise space.
generator</span>'s transformation results from noise space.
<br />
Opacity encodes density:
darker purple means more samples in smaller area.
Expand All @@ -1261,8 +1267,9 @@
Pink lines from fake samples represent
<span id="toggle-right-gradients"
class="toggle-right checked"
title="click to toggle this layer"
style="color: var(--gradient-color);">
Gradients</span> for generator.
gradients</span> for generator.
<br />
<svg width="12" height="12">
<circle class="generated-dot" r="2"
Expand Down

0 comments on commit c9f8699

Please sign in to comment.