Problems 3-1 and 3-2

This commit is contained in:
2021-08-27 20:22:01 -07:00
parent 0422ae0cf8
commit 2c8989262a
3 changed files with 439 additions and 3 deletions

View File

@@ -37,7 +37,7 @@
.greenSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: #66ff77;
background: #000000;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -45,7 +45,7 @@
}
.greenSlider::-moz-range-thumb {
background: #66ff77;
background: #000000;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -92,7 +92,7 @@
wRSlider.oninput = function()
{
theta = this.value;
theta = parseFloat(this.value);
w = Math.sqrt(980 / (l * Math.cos(theta)));
}