Gallery edit.

This commit is contained in:
Robin Davies
2022-03-14 16:00:46 -04:00
parent e9043618f8
commit 0b893be9a4
+7 -6
View File
@@ -10,7 +10,7 @@
"hotspot.png" "hotspot.png"
]; ];
let captions = [ let captions = [
"\u00A0", "PiPedal Guitar Effects Pedal running on a Raspberry Pi 4",
"PiPedal web interface.", "PiPedal web interface.",
"Flexible effect routing.", "Flexible effect routing.",
"Bind controls to midi messages.", "Bind controls to midi messages.",
@@ -22,6 +22,7 @@
let aspectY = 648; let aspectY = 648;
let borderWidth = 0; let borderWidth = 0;
let galleryIndent = "";
let width ; let width ;
let height; let height;
let frameWidth ; let frameWidth ;
@@ -81,7 +82,7 @@
galleryAnimationStep = undefined; galleryAnimationStep = undefined;
let captionElement = document.getElementById("gallery_caption"); let captionElement = document.getElementById("gallery_caption");
captionElement.innerText = captions[galleryFrame]; captionElement.innerText = galleryIndent +captions[galleryFrame];
} }
} }
galleryLastAnimationCallback = window.requestAnimationFrame(galleryAnimationStep); galleryLastAnimationCallback = window.requestAnimationFrame(galleryAnimationStep);
@@ -198,7 +199,7 @@
document.writeln("<div id='galleryArrows' style='position: absolute; width: " document.writeln("<div id='galleryArrows' style='position: absolute; width: "
+ frameWidth + "px; height: " + frameHeight + frameWidth + "px; height: " + frameHeight
+ "px; left: 0px; top: 0px; opacity: 0.0;" + "px; left: 0px; top: 0px; opacity: 0.0;"
+ " display: flex; flex-flow: row none; justify-content: space-between;align-items: end; padding:20'>"); + " display: flex; flex-flow: row none; justify-content: space-between;align-items: end; padding:20; opacity: 0.8;'>");
{ {
document.writeln("<div><span style='font-size: 52px;color: #444;'>◄</span></div>"); document.writeln("<div><span style='font-size: 52px;color: #444;'>◄</span></div>");
document.writeln("<div><span style='font-size: 52px;color: #444;'>►</span></div>"); document.writeln("<div><span style='font-size: 52px;color: #444;'>►</span></div>");
@@ -207,9 +208,9 @@
document.writeln("</div>"); document.writeln("</div>");
} }
document.writeln("</div>"); document.writeln("</div>");
document.writeln("<div id='gallery_caption_frame' style='margin-left: 20px; width: " + frameWidth + "px; display: flex; flex-flow: row nowrap; justify-content: center; background: #666;'>"); document.writeln("<div id='gallery_caption_frame' style='margin-left: 20px; width: " + frameWidth + "px; display: flex; flex-flow: row nowrap; margin-top: 8px; padding-left: 60px'>");
document.writeln("<div> <span id='gallery_caption' style='font-size: 0.9em; font-style: italic; color: #FFF;'> " document.writeln("<div> <span id='gallery_caption' style='font-size: 0.9em; font-style: italic; color: #888;'> "
+ captions[0] + "</span></div></div>"); + galleryIndent +captions[0] + "</span></div></div>");
let galleryOnLoaded = () => { let galleryOnLoaded = () => {