html Änderung
This commit is contained in:
parent
bb3a735d37
commit
7976f5258f
@ -18,10 +18,10 @@
|
||||
<!--<label id="label_pwm">
|
||||
</label>-->
|
||||
<div class="slider">
|
||||
<input type="range" class="regler" value="50" min="1" max="100"
|
||||
oninput="this.nextElementSibling.value = this.value">
|
||||
|
||||
<output>50</output>
|
||||
<input type="range" class="regler" id="helligkeit" name="rangeInput" min="0" max="100" value="50"
|
||||
oninput="amount1.value=helligkeit.value">
|
||||
<br>
|
||||
<output name="amount1" id="amount1" for="helligkeit">50</output>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ueberschrift">
|
||||
@ -29,9 +29,10 @@
|
||||
<!--<label id="label_pwm_dark">
|
||||
</label>-->
|
||||
<div class="slider">
|
||||
<input type="range" class="regler" value="50" min="1" max="100"
|
||||
oninput="this.nextElementSibling.value = this.value">
|
||||
<output>50</output>
|
||||
<input type="range" class="regler" id="helligkeit_dunkel" name="rangeInput" min="0" max="100" value="50"
|
||||
oninput="amount2.value=helligkeit_dunkel.value">
|
||||
<br>
|
||||
<output name="amount2" id="amount2" for="helligkeit_dunkel">50</output>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -40,9 +41,10 @@
|
||||
<!--<label id="label_geschwindigkeit">
|
||||
</label>-->
|
||||
<div class="slider">
|
||||
<input type="range" class="regler" value="50" min="1" max="100"
|
||||
oninput="this.nextElementSibling.value = this.value">
|
||||
<output>50</output>
|
||||
<input type="range" class="regler" id="geschwindigkeit" name="rangeInput" min="0" max="100" value="50"
|
||||
oninput="amount3.value=geschwindigkeit.value">
|
||||
<br>
|
||||
<output name="amount3" id="amount3" for="geschwindigkeit">50</output>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -51,9 +53,10 @@
|
||||
<!-- <label id="label_time">
|
||||
</label>-->
|
||||
<div class="slider">
|
||||
<input type="range" class="regler" value="50" min="1" max="100"
|
||||
oninput="this.nextElementSibling.value = this.value">
|
||||
<output>50</output>
|
||||
<input type="range" class="regler" id="time" name="rangeInput" min="0" max="100" value="50"
|
||||
oninput="amount4.value=time.value">
|
||||
<br>
|
||||
<output name="amount4" id="amount4" for="time">50</output>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -24,9 +24,11 @@ html {
|
||||
}
|
||||
|
||||
.regler{
|
||||
position: fixed;
|
||||
left: 0;
|
||||
-webkit-appearance: none;
|
||||
height: 30px;
|
||||
width: 98%;
|
||||
width: 100%;
|
||||
border-radius: 20px;
|
||||
outline: black;
|
||||
background-color: rgb(176, 188, 228);
|
||||
|
Loading…
x
Reference in New Issue
Block a user