Updated styles.css, changed default slider values to 0
This commit is contained in:
@ -19,17 +19,17 @@
|
||||
<h2>LucalEncoded?</h2>
|
||||
<input type="checkbox" id="lucalEncodedInput">
|
||||
<h2>Shock</h2>
|
||||
<input type="range" min="0" max="99" id="shockIntensity" oninput="document.getElementById('sliderValueFirst').value = this.value" class="sliderInput">
|
||||
<input type="range" min="0" max="99" value="0" id="shockIntensity" oninput="document.getElementById('sliderValueFirst').value = this.value" class="sliderInput">
|
||||
<br>
|
||||
<output id="sliderValueFirst">0</output>
|
||||
<output id="sliderValueFirst" class="sliderValue">0</output>
|
||||
<br>
|
||||
<button onclick="shock();">Shock!</button>
|
||||
<button onclick="shock();" class="sliderButton">Shock!</button>
|
||||
<h2>Vibrate</h2>
|
||||
<input type="range" min="0" max="99" id="vibrateIntensity" oninput="document.getElementById('sliderValueSecond').value = this.value" class="sliderInput">
|
||||
<input type="range" min="0" max="99" value="0" id="vibrateIntensity" oninput="document.getElementById('sliderValueSecond').value = this.value" class="sliderInput">
|
||||
<br>
|
||||
<output id="sliderValueSecond">0</output>
|
||||
<output id="sliderValueSecond" class="sliderValue">0</output>
|
||||
<br>
|
||||
<button onclick="vibrate();">Vibrate!</button>
|
||||
<button onclick="vibrate();" class="sliderButton">Vibrate!</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user