Skip to content

Commit

Permalink
Fix #214: Einstellungen zu einer Funktion sind wieder da.
Browse files Browse the repository at this point in the history
* Die Einstellungen zu einer Funktion auf der
  Seite *Funktionen* sind wieder da. Ich hatte
  sie versehentlich in 6e30d2e gelöscht.
  • Loading branch information
Wandmalfarbe committed Mar 10, 2023
1 parent b7d9c95 commit 9fa2f25
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions webpage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,36 @@ <h2>Animation</h2>
</form>
</div>

<div class="box functions-settings">
<h2>Einstellung</h2>

<form class="pure-form pure-form-aligned">
<div class="pure-control-group brightness">
<label class="slider-label" for="slider-brightness">Helligkeit <span class="value" id="slider-brightness-value">0</span></label>
<input id="slider-brightness" type="range" min="0" max="100" value="1">
</div>
<div class="pure-control-group text">
<label for="marquee">Lauftext</label>
<input id="marquee" type="text" placeholder="Lauftext">
<div class="pure-controls">
<button id="marquee-button" class="pure-button">Speichern</button>
</div>
</div>
<div class="pure-control-group speed">
<label class="slider-label" for="slider-speed">Geschwindigkeit <span class="value" id="slider-speed-value">0</span></label>
<input id="slider-speed" type="range" min="1" max="10" value="0">
</div>
<div class="pure-control-group leds">
<label class="slider-label" for="slider-leds">Anzahl LEDs <span class="value" id="slider-leds-value">0</span></label>
<input id="slider-leds" type="range" min="5" max="100" value="100">
</div>
<div class="pure-control-group position">
<label class="slider-label" for="slider-position">Position <span class="value" id="slider-position-value">0</span></label>
<input id="slider-position" type="range" min="1" max="100" value="100">
</div>
</form>
</div>

</div>

<div class="pure-u-24-24 section section-frontoptions">
Expand Down
2 changes: 1 addition & 1 deletion webpage/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,6 @@ input:checked + .slider:before {
font-family: monospace;
}

.brightness, .speed, .functions-settings, .leds, .position{
.brightness, .speed, .functions-settings, .leds, .position {
display: none;
}

0 comments on commit 9fa2f25

Please sign in to comment.