mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-11-21 11:21:30 -08:00
drum-machine add notification to .focus(); with 'v' key
This commit is contained in:
parent
a76e33a644
commit
b137e5e185
@ -54,12 +54,17 @@ body {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-around;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
font-size: x-large;
|
||||
font-style: oblique;
|
||||
}
|
||||
|
||||
#display-top p {
|
||||
height: 10px;
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
#display-middle {
|
||||
flex-basis: 62%;
|
||||
width: 100%;
|
||||
@ -338,7 +343,7 @@ i.fa-volume-up {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#select-volume, #display-middle-right-f, #display-middle-right-g {
|
||||
#select-volume, #display-middle-right-f, #display-middle-right-g, #volumeTip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@ -427,7 +432,7 @@ i.fa-volume-up {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
#select-volume, #display-middle-right-f, #display-middle-right-g {
|
||||
#select-volume, #display-middle-right-f, #display-middle-right-g, #volumeTip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -80,6 +80,8 @@ $(document).ready(function () {
|
||||
padsArray.forEach(pad => {
|
||||
makeMetronomeIcons(pad);
|
||||
});
|
||||
|
||||
$('#display-top').html('<p id="volumeTip">press "V" to focus Volume so you can adjust with arrow keys</p>');
|
||||
});
|
||||
|
||||
const makeMetronomeIcons = (pad) => {
|
||||
@ -110,7 +112,7 @@ const qweasdzxc = [81,87,69,65,83,68,90,88,67];
|
||||
|
||||
const playSample = (key) => {
|
||||
const audioFileText = $('#'+key[0]).attr('src').slice(36)
|
||||
$('#display-top').html(key[0] +": " + audioFileText.replace(/\//g,' ').replace(/-/g,'‑'));
|
||||
$('#display-top').html( "<p>" + key[0] +": " + audioFileText.replace(/\//g,' ').replace(/-/g,'‑') + "</p>");
|
||||
if (sessionStorage.getItem(key[0] + 'isMetronome') === 'false') {
|
||||
const keyDuration = 1000;
|
||||
const sound = document.getElementById(key[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user