Added lamp for visual feedback on tones
This commit is contained in:
parent
2b284f776a
commit
47fe262d83
|
@ -54,6 +54,7 @@ available towards the bottom.</p>
|
|||
<br>
|
||||
<div class="button-container">
|
||||
<button id="submitButton" class="interaction-button" disabled="disabled">Enter</button>
|
||||
<button id="beepLamp" class="lamp" disabled="disabled"/>
|
||||
<button id="resetButton" class="interaction-button" disabled="disabled">Replay</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -30,11 +30,13 @@ async function initializeAudioContext() {
|
|||
function startNotePlaying() {
|
||||
// Pass a start time of 0 so it starts ramping up immediately.
|
||||
gain_node.gain.setTargetAtTime(0.1, 0, 0.001)
|
||||
$("#beepLamp").addClass("lamp-on")
|
||||
}
|
||||
|
||||
function stopNotePlaying() {
|
||||
// Pass a start time of 0 so it starts ramping down immediately.
|
||||
gain_node.gain.setTargetAtTime(0, 0, 0.001)
|
||||
$("#beepLamp").removeClass("lamp-on")
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -24,6 +24,18 @@
|
|||
font-size: 20px;
|
||||
}
|
||||
|
||||
.lamp {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
margin: 10px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.lamp-on {
|
||||
background: darkgray;
|
||||
}
|
||||
|
||||
.game-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
Loading…
Reference in New Issue
Block a user