diff --git a/noteCircle/new/index.html b/noteCircle/new/index.html index 97f1d06..a1ddc87 100644 --- a/noteCircle/new/index.html +++ b/noteCircle/new/index.html @@ -42,6 +42,18 @@
+ + + + + + + +
+
+
+
+
diff --git a/noteCircle/new/js/script.js b/noteCircle/new/js/script.js index 81e8668..153a4e6 100644 --- a/noteCircle/new/js/script.js +++ b/noteCircle/new/js/script.js @@ -344,8 +344,9 @@ const imageOrder = [ 0, 1, 3, 4, 6, 7, 8, 10, 11, 13, 14, 16, 2, 5, 9, 12, 15]; function loadScales(){ // let begin = "Please use a web browser with SVG image support to see the image."; + let mid = "
Treble (G clef)
Alto (C clef)
Bass (F clef)
Mandolin tablature
Guitar tablature
"; + let begin = mid + "Please use a web browser with SVG image support to see the image."; for(let j = 0; j < 17; j++){ for(let i = 0; i < 7; i++){ let index = i+( j*7); @@ -365,7 +366,7 @@ function loadScales(){ function drawNotes(){ img1.innerHTML = ""; - img2.innerHTML = ""; img2.parentElement.parentElement.style.display = 'none'; + img2.innerHTML = ""; // img2.parentElement.parentElement.style.display = 'none'; let index = keyIndex; let _scale = scale_Select.selectedIndex; @@ -385,7 +386,7 @@ function drawNotes(){ // }, 100); if(offset) { img2.innerHTML = _images[_scale][offset*7+_mode]; - img2.parentElement.parentElement.style.display = ''; + //img2.parentElement.parentElement.style.display = ''; // setTimeout(function(){ // img2.childNodes[0].contentDocument.childNodes[0].style.filter = 'invert(1)'; // }, 100); diff --git a/noteCircle/new/style.css b/noteCircle/new/style.css index b8e8444..660b9da 100644 --- a/noteCircle/new/style.css +++ b/noteCircle/new/style.css @@ -44,7 +44,9 @@ table{ /* background-color: #111; */ } .imgText{ - text-align: right; + position: absolute; + text-align: left; font-family: Georgia; - font-size: 0.83em; + font-size: 15px; + margin-left: 75px; }